Top "Spinner" questions

Spinner is a widget that allows the user to select an item from a group, like a dropdown list.

Android: Where is the Spinner widget's text color attribute hiding?

I'm trying to change the text color of the single item that is displayed in the spinner button after you …

android text colors spinner
Is it possibile to set hint Spinner in Android

Is there anyway of making a hint for a spinner similar to hint that is provided for edit text fields. …

java android spinner
Change spinner background color but keep arrow

I've read several thing about it but I can't find what I need. I want to keep the grey arrow …

android spinner android-spinner
Android - configure Spinner to use array

I declare my Spinner in the following manner (it's very static so I have 2 string arrays in array.xml for …

android arrays spinner android-spinner
set onClickListener for spinner item?

I have spinner which populates from database: catSpinner = (Spinner) findViewById(R.id.spinner1); cursor = dataAdapter.getAllCategory(); startManagingCursor(cursor); String[] from = …

android spinner listener
Multi selection spinner in android without AlertDialog

i want the same as this link https://www.gorecess.com/ first spinner . multi selection spinner in android with checkbox .…

android drop-down-menu android-listview spinner android-spinner
How should I increase the spinner list item font size?

This is my spinner's code: Spinner food = (Spinner) findViewById(R.id.spinner1); ArrayAdapter<CharSequence> foodadapter = ArrayAdapter.createFromResource( this, …

android spinner
Android Spinner - onItemSelected / setOnItemSelectedListener not triggering

This is driving me nuts since it's something I've done before but can't figure out why it isn't working now... …

android android-layout triggers spinner listener
How to set font custom font to Spinner text programmatically?

I have a ttf font file in my assets folder. I know how to use it for textviews with: Typeface …

android fonts spinner android-spinner android-fonts
Set Key and Value in spinner

I have a spiner and I want set a key and a value on this,I use of HashMap,It's …

android hashmap spinner