Tagged Questions
0
votes
1answer
169 views
Android: How to connect Spinner selection with AutoCompleteTextView
I'm trying to connect actions in Spinner with AutoCompleteTextView. My goal is when user selects some item in spinner, AutoCompleteTextView suggestion list needs to be changed.
Example:
Spinner ...
1
vote
1answer
291 views
Changing text size of an Android Spinner dynamically at runtime
I am trying to set the text size of a spinner dynamically in the program. I am using the below code. The text size changes but due to some reason, the spinner always shows the item at index 0 even ...
2
votes
1answer
158 views
Spinners with same ID/How to add rows programmatically
I'm having an issue with an app I'm developing. I have a screen with a starting spinner (choosing clients) and 1 row with elements inside. When I click the plus button it adds more of those rows. The ...
0
votes
1answer
439 views
update spinner value while click button in android
in my app have 2 fields..they are 1 spinner and 1 button...here i have to select the spinner value and click the submit button means the spinner value is updated dynamically..how is to do...i have to ...
0
votes
1answer
223 views
How to add dynamic Spinner's as well as remove them?
My question revolves around reminder Spinner's. I am trying to allow the user to add at maximum, 5 reminders. But I also don't want to show all five. These reminders are each Spinner's which have ...
3
votes
2answers
4k views
How to dynamically change the Spinner's items
I have two spinners. Country and City.
I want to dynamically change the City's values upon Country selection.
I know how to create and initialize the values of Country but don't know how to set and ...