Alternative to Spinner? ( other ways to choose from a list?)
I want my users to choose something 开发者_开发知识库in one of my screen but i'm tired of the spinner. Can anyone suggest how can i add a cooler way to choose stuff?
If you're tired of a spinner, why not create your own styled dialog to select things. You can make it look however you want.
If you don't have too many options and/or they are labeled with short texts, you can consider using RadioGroup
with radio buttons. This would of course go either directly on your activity (taking more space than a spinner) or inside a custom dialog.
精彩评论