A spinner is a control/widget that allows the user to select an item from a group, like a dropdown list...

learn more… | top users | synonyms

107
votes
14answers
138k views

How to make an Android Spinner with initial text “Select One”

In Android, I want to use a Spinner that initially (when the user has not made a selection yet) displays the text "Select One". When the user clicks the spinner, the list of items is displayed and the ...
22
votes
1answer
13k views

How to add a Dropdown item on the action bar

In my Android Honeycomb application I use Tabs as the navigation style. I would like to add one item next to the overflow button, but I want that item to be a dropdown list, and the user will be able ...
21
votes
3answers
1k views

Spinner does not wrap text — is this an Android bug?

If the text of a Spinner item is too long to fit into a single line, the text is not wrapped but cut off. This is only the case for API level >= 11. Here are screenshots of Android 4.2.2 (left) which ...
15
votes
3answers
9k views

How to set active item in the Action Bar drop-down navigation?

I'm trying to fix the issue with restarting activity on orientation changes. I have an ActionBar with drop-down list navigation and after every rotation first element of this list is being activated. ...
11
votes
1answer
825 views

custom spinner view

I have created my own custom spinner which I can access from "Custom and library views" as it implements View. But, the problem is that when drag my custom spinner from palette to use it in my ...
10
votes
3answers
6k views

Android spinner with date picker, like Google Calendar app

I'm trying to get a text box that looks like a spinner to activate a date picker dialog. This is done in both the Google Calendar app and the Contacts app (for birthdate) on ICS. Do I need to use a ...
9
votes
2answers
906 views

How to wrap text content in ActionBarSherlock navigation spinner

I'm trying to wrap the text content of my ActionBar navigation spinner (I'm using ActionBar Sherlock). It seems that my spinner takes the width of the items contained within the dropdown list. How ...
8
votes
2answers
10k views

Custom Spinners/drop down menu

In the app Astrid Tasks, there is a button. When you press the button, a drop down menu comes up. It's basically a spinner but in a drop-down-list form. Does anyone know how to do something ...
8
votes
1answer
5k views

How can I add my spinner to the ActionBar?

I'm trying to get my spinner working as the Action Bar Drop Down List item, but I cant seem to implement it at all, there aren't many tutorials for this after searching through Google. I think its ...
6
votes
1answer
34 views

How can i invoke an action on the same selection of spinner value

I select the value from spinner and when i select the same value again then no action is performed on the click . Thanks in advance
6
votes
3answers
2k views

How to sort HashMap as added in Android with ArrayAdapter

I have a HashMap<String,String> and there is a static method which returns this map to an Activity. Method looks like this: public static HashMap<String, String> getAll() { ...
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>, ...
6
votes
2answers
725 views

Spinner onItemSelected with item already selected

I've a Spinner with onItemSelected interation that works, but how the Api specification says: This callback is invoked only when the newly selected position is different from the previously ...
5
votes
0answers
3k views

Example: How To Programmatically Fill An Android Spinner from an Array in MonoDroid / C# [closed]

I started fiddling around with MonoDroid this week. Not that I don't appreciate Java, but I spend most of my time in either Visual Studio / C# or Delphi, and I'd rather pull my fingernails out than ...
4
votes
1answer
9k views

How to color and alignment spinner item on android?

I'm try to change text color and align item in spinner to center of it how can I do this here is my code String[] li={"1","2","3"}; final Spinner combo = (Spinner)findViewById(R.id.widget30); ...
4
votes
2answers
7k views

How to set Spinner Default by its Value instead of Postion?

I have 1-50 records in the database. I am fetching those data using cursor and set those values to Spinner using Simple Cursor Adapter. Now what i need is i want to set one value say 39th value as ...
4
votes
3answers
372 views

Why is my spinner so awful?

I have a spinner that looks like extremly ugly like this: When I click on it looks a little bit better: But still, in the default it doesn't even looks like a spinner. Any idea how can I improve ...
4
votes
3answers
636 views

Pass String variables by reference to setOnItemSelectedListener of multiple Spinners

OK, I've read around and see that Java only passes by value, not by reference so I don't know how to accomplish this. I've 6 Spinners in an Android Activity that are populated with different SQLite ...
4
votes
2answers
282 views

Spinner with multi-line items overlaps selected item display on Froyo

I'm trying to create Spinners that look the same on all versions of Android back to Froyo. To that end, I'm using HoloEverywhere. Some of the spinner item text is more than one line, and I'd like it ...
4
votes
1answer
675 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 ...
4
votes
2answers
440 views

How to create spinner with heading in it?

I am just thinking to create like below in spinner, but i am not sure how to make it work Fruits (heading unclickable) Apple Mango Orange Cars (heading unclickable) BMW Lenova ...
3
votes
3answers
3k views

Best way to show a loading spinner?

What is the best way to show a loading spinner while the app is waiting for a response from the server? Can this be done programmatically? So that I don't have to add the load spinner in the xml ...
3
votes
1answer
2k views

Android : Fill Spinner From Java Code Programmatically

I would like to know how to fill a spinner from java code programmatically ? I have a spinner in the layout as below <Spinner android:id="@+id/consultation_deseases" ...
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 ...
3
votes
2answers
942 views

how to change android spinner popupBackground

I was trying to change the android spinner popup window background by setting the android:popupBackground, but it didn't have any effect. Is there any way I can change it? <Spinner ...
3
votes
3answers
5k views

Android Dropdown-Menu (No spinner!)

I want to create a dropdown navigation. I drew this sketch: I already tried a spinner, but i dont want that combobox, only that list, wich shows on the button click
3
votes
3answers
256 views

find all spinners that match a tag

Is it possible to get a list or find all Spinner that match a specific tag? I would like the user to be able to add new Spinner widgets on the fly, but I need to be able to dynamically get the values ...
3
votes
2answers
2k views

ArrayAdapter : Json data to be sent to spinner

Hi I have created an activity which pulls data from json format text and displays in a spinner view. But im a little confused with the last part. The contactList is a ArrayList type, ArrayAdapter is ...
3
votes
3answers
634 views

Spinner - focus to first item

I use dropdown spinner with cursor adapter. It contains e.g 1 - 100 items. I select e.g. item 50. Item is selected. Next time when I open spinner first visible row is item 50. How can I achieve that ...
3
votes
4answers
204 views

JSONArray to Spinner

I have a problem. I don't set JSONArray to Spinner. My JSON look ["category1","category2","category3"] How to get this JSONArray to spinner? I don't know if my code is well public class Main extends ...
3
votes
2answers
525 views

ListSelector color change (while selecting list) and also put text-color (black) for Spinner does not working

Hello i want to change default orange color to red while selecting list item from spinner below is my code To put Text in middle in spinner list and remove radio button in selection i have make ...
3
votes
2answers
1k views

How to get spinner value depending upon the other spinner

I have two spinner item. One is my Day spinner , another is my Month Spinner. If I select month February from month spinner and if I select day as 30 ,it should not be done. Another example: month ...
3
votes
2answers
1k views

iPhone like Spinner for Android

I Need a custom behavior for android as it is in iPhone. Currently I need an arrangement for selecting the numbers as given in the above picture. I tried http://code.google.com/p/customspinner/ , ...
3
votes
1answer
60 views

Android - list navigation styling

I have a spinner(sherlock) placed in action bar which displays 5 options for the user to choose from as shown below. everything is fine so far. But i wanted the spinner to be right aligned on the ...
3
votes
1answer
129 views

i cannot see my custom progress dialog

I tried the following code for creating a custom progress dialog. But I am not getting the desired output. Following is my MainActivity.java code public class MainActivity extends Activity { ...
3
votes
1answer
64 views

Unable to get the reference to spinner in the onCreate statement

public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_homepage); Spinner ...
3
votes
2answers
900 views

Android Multi Spinner

I would like to develop an android app with three spinners. These three spinners will contain the information about the cars, which are brands, models, and engines. So, after the first ...
3
votes
1answer
2k views

Adding OnItemSelectedListener to Spinner

I have a button and a spinner (originally hidden). When user presses a button, spinner gets populated with items and becomes visible. Now I would like to add OnItemSelectedListener to the spinner. and ...
3
votes
3answers
762 views

Two spinners next to eachother

I have this problem when i put two spinners next to eachother. Here is the fragment of the layout xml: ... <LinearLayout android:layout_width="fill_parent" ...
3
votes
3answers
46 views

How to change style of custom spinner in android

my view is as like this, I am Using Custom adapter for spinner I have design my spinner from this link http://rimpv.blogspot.in/2013/05/bind-spinner-dropdown-in-android.html @Override public View ...
3
votes
0answers
44 views

How to make little arrow from dropdown list stay close to text?

I have a dropdown list in my Action Bar (ActionBarSherlock), but the little arrow stay too far from the text when text is short. I would like to do the same as the Google Plus app, where the arrow ...
3
votes
2answers
289 views

Spinner's onItemSelected callback called twice after a rotation if non-zero position is selected

When I create my activity, I setup a Spinner, assigning it a listener and an initial value. I know that the onItemSelected callback is called automatically during application initialization. What I ...
3
votes
1answer
55 views

android.R.simple_spinner_adapter cannot be resolved

Android 2.3.3 I am having a Spinner in my xml file and I wish to set an ArrayList as a source. I am trying to instantiate the ArrayAdapter with the ArrayList, but i don't get the ...
3
votes
2answers
139 views

How to stop scrolling screen to top on selection of spinner in android

I am using spinner in scroll view, when I do selection of spinner, scroll view is scrolling to top of screen. Is there any way to prevent this scroll? Any help is appreciated. Thanks.
3
votes
3answers
704 views

Multiple AsyncTasks issue on Android Spinner

I'm getting some error. I know what is the problem but I don't know how to fix it. I've 4 spinner. Every spinner related one asynctask. For short, When I select one item on spinner1 , execute second ...
3
votes
2answers
772 views

spinner dropdown coming in the middle of the screen with andorid 2.3

I am trying following with android 2.3 as well as andorid 4.0. <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" ...
3
votes
1answer
540 views

Custom Spinner with white text color

I want my Action Bar spinner to display it's text in white (like in google maps app), but i'm struggling to get there.. i'm trying something like this: <style name="Mepo.Spinner" ...
2
votes
3answers
4k views

Android: two Spinner onItemSelected()

I have two spinners (day_spin and time_spin) in one Activity. I want to save the selected day_spin value into a variable. Is it possible to differenciate between the two spinners in the same Listener? ...
2
votes
1answer
3k views

How can I read json file from SD Card

I need to read a json file from the SD card and display the data in the spinner. Is there any way to read the data from file in Android and display the contents of that file in spinner?
2
votes
2answers
1k views

How to add Image to spinner in Android

I want to add an image to spinner I have tried like: <Spinner android:id="@+id/spinner1" android:layout_width="wrap_content" android:layout_height="wrap_content" ...

1 2 3 4 5 14