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

1
vote
1answer
5k views

How to customize style from spinner dropdown CHOICES?

I can customize the background of the selected option on a spinner dropdown using: <item name="android:spinnerStyle">@style/customSpinner</item> <style name="customSpinner" ...
0
votes
1answer
31 views

Inserting data from database into spinner in android

Can somebody teach me how to fetch the data from the SQLite database and place all the information gathered from the database into the Spinner. For example, I have a tblState in my db and I need to ...
0
votes
1answer
55 views

ActionBarSherlock Change Text Color of Overflow Action Items

I'm working on an android app and I am using ActionBarSherlock for compatibility. Everything works great so far, except the fact that I want to change the text color of the overflow menu items. ...
0
votes
1answer
34 views

How to set the spinner mode dynamically?

I have created a spinner dynamically. Thats easy. Done. Now i need to set the spinner mode dynamically. Almost a beginner in Android. Need help.
0
votes
1answer
33 views

Android ExpandableList Header with spinner

I'm developing an application and I am facing a problem using ExpandableListView. What I'm trying to do is, in GroupHeader, not only show the group name, but also an spinner with options. That's ...
0
votes
1answer
85 views

Update the Activity based on what item is selected in the Spinner

In the current Activity I'm printing a graph (using Androidplot) of the closing prices of a selected stock from the previous activity. In this activity I have a spinner of a list of indicators the ...
0
votes
1answer
20 views

Spinner row touchable region is only text

In my Android app, I have a spinner in the ActionbarSherlock: <menu xmlns:android="http://schemas.android.com/apk/res/android" > <item android:id="@+id/menu_left_spinner" ...
0
votes
1answer
78 views

Populate spinner from database with previous values

I have an activity with edittexts and spinners. I set the values in each one and then save them in a db. Now in a second activity with the exact same xml file i want to automatically populate them all ...
0
votes
1answer
123 views

Android ListView with TextView and Spinner

Beginner question here I wonder if someone can point me in the right direction. I need a listview of 'accounts' where each item will contain a textview, and a spinner to choose from a preset amount, ...
0
votes
1answer
120 views

How to create two spinner for Date Picker in one class in android?

I have created one class in which i want to set two different spinner for date picker. I want this because i want to set start event date and end event date, so how can i set two different spinner ...
0
votes
1answer
159 views

Create spinner adapter in android dialog builder

I have a problem with spinner in my alert dialog builder, it does not show any error while compilation time and I also call alertdialog.show() method to show my custom dialog but it can't populate my ...
0
votes
1answer
134 views

Android performClick() on spinner

I am having problem with performClick() method when applied on spinner but only on android 4.0.1 and higher. It works just fine on 2.3 version. Devices used for testing Nexus 7 tablet and Samsung ...
0
votes
1answer
286 views

set background image in spinner view android

I want to set a background image on my spinner. Problem is , when I apply image to spinner, the height of the spinner stretches as per image size (which off course I do not want). I want that image ...
0
votes
1answer
42 views

link an interface with the database in android

I want to create an android application with columns and rows, from where user will choose items and create an order. I've already made my own database in SQLiteBrowser with 5 columns. I added this db ...
0
votes
1answer
96 views

Change color of spinner items to 2 colors

I have populated my Spinner, which appears in DialogFragment, with two lists - list1 and list2. I want that the lists appear in two different colors: i.e. list1 in blue and list2 in red, during ...
0
votes
1answer
174 views

Change color of items in spinner

I want to change the color of items in spinner to say 3 different colors and all the items should be added dynamically. I am adding items in the spinner through list. Suppose i have 2 lists and i want ...
0
votes
1answer
96 views

Binding spinner with two related attributes

I want to bind the android spinner in way that I can bind primary key with the attribute. For example, I've a table of city in database, which has two columns "cityID" and "cityname". Now, how could ...
0
votes
1answer
529 views

Android Spinner in Custom DialogPreference forced close the application on Orientation change

I created a custom dialog preference, that has two spinners in order to select a specific interval of time (e.g. 2 seconds or 2 minutes ou 3 hours etc.) So, when I click my custom preference in the ...
0
votes
1answer
162 views

Reduce white space between Spinner items

I wanted to reduce the white spaces between the items in my Spinner. I looked things up on the Internet, but I can't seem to find it. What did I try? Not much to be honest, I can't find anything ...
0
votes
1answer
167 views

Get and Set values form spinner

I'm looking for to get and set values form spinner loades from database but i don't find it. private void loadSpinnerData() { // database handler DatabaseHandler db = new ...
0
votes
1answer
303 views

How to change the color of divider of spinner in android?

How to change the color of divider of spinner in android? I have tried : <style name="My_Theme_Name"> <item name="android:spinnerStyle">@style/App_Style_Spinner</item> ...
0
votes
1answer
85 views

Android get spinner value after load?

after load the spinner i want to take the value of spinner which is set in spinner i know how to get the selected value but when is first time load is get the null value in time when is first time ...
0
votes
1answer
103 views

Java Multi Dimension array -how to read values from spinners

Hello i have 2 drop downs .First drop down[Spinner1] has 4 values , second[Spinner2]has 5 values. Now when user selects values from first drop down and another value from second drop down , a ...
0
votes
1answer
158 views

ActionBar's action items not working on some devices

I'm developing an app using ActionbarSherlock for backwards compatibility, and I'm currently having problems with the Spinner I add to the ActionBar. Scenario: I'm using ...
0
votes
1answer
96 views

Set spinner text manually to something not in the XML?

I have a spinner with a list of article "sections" - "news, sports, local, obits..." etc. It also doubles as the header for the section, so the user knows what articles they're looking at. When the ...
0
votes
1answer
266 views

Memory Leak on DialogFragment orientation change with expanded Spinner

I know there's a ton of questions about memory leaks and orientation changes. I've spent hours looking and testing trying to figure out what exactly is going on. I've paired my app down to an ...
0
votes
1answer
208 views

Set scroll positon of dropdown window of List Navigation Mode?

I'm using ActionBar.NAVIGATION_MODE_LIST and I have a custom adapter for the Spinner. I've been managed to do everything I needed but there's only one missing thing I can't figure out.. When an item ...
0
votes
1answer
176 views

how to create rounded smaller spinner in android

I want create a spinner with rounded corners and also it should not covers the whole width of the screen as of default spinner covers. plz help
0
votes
1answer
801 views

How to create a custom Progress Dialog(spinner)?

I have googled a lot and even gone through many of this website questions but I just can't find the solution to my problem. I want to create a spinner like the one below. This is just a normal ...
0
votes
1answer
93 views

Android: having error in onItemSelected for Spinner

I getting default value in EditText even i didn't choose from spinner yet.Can anyone help me? public void onItemSelected(AdapterView<?> parent, View v, int position, long id) { // ...
0
votes
1answer
993 views

How can I change the Android spinner prompt style

I have developed an example. I need to change the style for Android spinner prompt. How can I change the style? This is my string.xml code: <?xml version="1.0" encoding="utf-8"?> ...
0
votes
1answer
184 views

Insert data in one activity,retrieve it from sqlite database and insert it in a spinner in another activity

I have two activities: Account and Transaction. Data is inserted in Account form and I want to display specific data like ACCOUNT NAME in a spinner in Transaction Activity. Code for database: ...
0
votes
1answer
50 views

spinner that trigger another spinenr

mySpinner.setOnItemSelectedListener(new OnItemSelectedListener() { @Override public void onItemSelected(AdapterView<?> parentView, View selectedItemView, int position, long id) { ...
0
votes
1answer
2k views

Spinner drop down menu items color (Android)

So I have a spinner and I was successful in changing the color of the selected item but I am not able to change the color of the items in the drop down menu This is my spinner_layout.xml <?xml ...
0
votes
1answer
185 views

Changing Android App Background Including Spinners and Dialogs

I want to change default white background in my android app to another color. I am using android:background="#HEXCODE" in my activity, it changes the background but the dialogs and spinners still ...
0
votes
1answer
303 views

Creating spinners dynamically?

Hi please suggest me a good example that shows how to create spinners dynamically (Like pressing a button add spinners)and retrieving values from them when submit.Am struck with my ideas..Help much ...
0
votes
1answer
227 views

Get data from multiple spinners?

hi am struck with this issue. I have a number of spinners created dynamically.Please help me to get data from these spinners. When clicking add button should get data from all spinners. code for ...
0
votes
1answer
269 views

Android spinner highlight selected item

I've got basic android spinner and I would like to have, after clicking it, the list with items with one of them highlighted, the one, that was originally selected. Like it's done here: ...
0
votes
1answer
588 views

Android: Round corners for Spinner items

I created an Android "Spinner" element like this: <Spinner android:id="@+id/choice" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_span="2" ...
0
votes
1answer
951 views

fetching value from database and setting it in android spinner

hi how is fetching data from database and setting it in spinner on android app.how can i develop dis.the below code is update data from spinner to android mysql database.but i wish to need fetch the ...
0
votes
1answer
447 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
155 views

Drop Down Control in Android other that Spinner

I am using spinner and looking for other similar control in Eclipse, I need to change drop down view of spinner. ArrayAdapter<String> Timeadapter = new ...
0
votes
1answer
305 views

update android spinner value in mysql database

hi i have to update my spinner value in mysql database means it is not updated...it shows following error on apache console window. [ERROR] 2 java.lang.ArrayIndexOutOfBoundsException: 2 at ...
0
votes
1answer
884 views

How to display data in spinner from json

I am retrieving values from a json url and then storing it in a string variable. Now I want to display that value in a spinner. I have created an array list in my strings.xml file. The xml file ...
0
votes
1answer
328 views

How can I animate Android Spinners?

My App is a temperature conversion app , In that I've two spinners, one will contain list of source metric the other will contain list of target metrics (Apparently loaded from the same Array ...
0
votes
1answer
167 views

android selected spinner value is update in mysql via soap webservice

Hi i have to update the android selected spinner value in mysql database...here i have to developed insert the android spinner value in mysql database successfully.here the below code is used. i have ...
0
votes
1answer
73 views

Spinner not working in ListView

I am customizing ListView and in its row I am using Spinner.Although list displays properly but when I click on Spinner it throws an exception. 08-22 17:11:08.705: E/AndroidRuntime(1168): FATAL ...
0
votes
1answer
162 views

Spinner with delete button make items disabled

I have an spinner in my activity. I need to show text and delete button when user click the drop down button. So I wrote Custom Array Adapter and it is render correctly. But I can only click the ...
0
votes
1answer
194 views

Setting spinner selection based on previous spinner selection

I'm sure this is simple and I'm just overlooking or doing something stupid, but I'm saving a number of inputs to a database, one being the option selected in a spinner, and storing it as text using: ...
0
votes
1answer
226 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 ...