Tagged Questions
4
votes
1answer
681 views
Android error when adding a spinnerSelector, no resource identifier found
I want to change the color of the list selector on a spinner item to something other than the ugly, orange default. From what I read, the way to do this is to set the android:spinnerSelector ...
0
votes
3answers
418 views
How to change the array source of a spinner (Android in eclipse)
I tried to ask this question before but I guess I didnt explain myself properly, so I will try again. I have a spinner (spinner5), I have created two string arrays (name_array and type_array) which ...
0
votes
1answer
570 views
How to change the entry of a spinner in code (Android)
Hi I have a spinner for which I would like to change its entry. I have created an array in the values folder. I know that I can edit the entry of the spinner by right clicking on it. But I want to ...
0
votes
1answer
365 views
How to compare two spinner values to display toast & change one spinner value
i want to display a toast when two spinner values are same, and revert back spinner1 value back to its default value from being same with spinner two
here is my java code
package com.test16.sp2;
...
0
votes
3answers
145 views
populate spinnerB with one of two arrays (from string.xml) from the users choice of spinnerA
I have been working on this all night and I am in a brain fog. can anyone give me a code snipit that would help I currently have this to populate SpinnerA onCreate:
ArrayAdapter<CharSequence> ...
6
votes
3answers
2k views
Spinner with an empty default selection
I have a Spinner which gets populate using a SimpleCursorAdapter. My cursor has some values, but i need the Spinner to show an empty option by default.
I don't want to use ArrayAdapter<String>, ...
1
vote
2answers
228 views
Is there a way for a spinner option to open another spinner?
I want it where when someone clicks an option in a Spinner, it opens another spinner with more options. Also, is there a way for an "Other" option to open an EditText where someone can input their ...