This question already has an answer here:
I have spinner but in it only selectable items are shown as default title..
is there any way i can set title which doesn't appear when spinner unfolds...
|
This question already has an answer here: I have is there any way i can set title which doesn't appear when spinner unfolds... |
|||||||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
I just realized what you were trying to do. You want the Spinner "button" to have a title. Something like "- Select One -", correct? If that is indeed the case, here is how I accomplished this. Don't use a spinner. Instead, use a button and style with the title to look like a spinner (will have to find how I did this). When the user clicks the button, open a "select one" dialog and style it to look like a spinner's dialog. I'll try to put a code sample up shortly. |
|||
|
You will have to set the prompt attribute of spinner.
Programmatically set title to Spinner
I don't know what the reason is, prompt don't support direct substitution of a string value. Instead you must have your string in strings.xml. |
|||||||
|
|
Take a look here: http://developer.android.com/resources/tutorials/views/hello-spinner.html Also, you can create a custom dialog that looks identical to a spinner. Then you can do whatever you want with it. |
|||
|
|
|
I'm afraid this is not available out-of-the-box. You'll need to implement this yourself. |
|||
|