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

2
votes
1answer
150 views

ListView Row Containing Multiple Dynamic Spiners

I have multiple Spinners inside listview control at perticular row. i fill all spinners dynamicly from WebService and all spinner values can change on selected item. Exp. i have 3 spinner of contry ...
2
votes
1answer
214 views

Spinner OnItemSelected firing unexpectedly causing UI problems

I have an app that access the internet. It parses a page (like StackOverflow) with headlines and pages. I have an AsyncTask that gets the headlines for those pages, and I have a hovering spinner on ...
2
votes
1answer
407 views

Android: Spinner onItemSelect inflate another Spinner

I have a spinner with which onItemSelect I need to open another Spinner based on the selection in the first.Here is the code...I am able to inflate the first spinner but on selecting an entry nothing ...
1
vote
1answer
19 views

Change holo spinner text colour

I have a spinner in a Holo theme dialog and am trying to change the text colour because it is very hard to read: I have looked at android styles.xml, as well as many other answers, and believe that ...
1
vote
1answer
44 views

Android Preventing Double Click On A Spinner

I have an unwanted problem by default in spinner view. On Android 2.2 when I double click any spinner it opens twice, Upon pressing the back button the 2nd spinner closes but 1st one remains open. ...
1
vote
1answer
32 views

problems with spinner in android

We are making a voice guided package and have come across a problem while implementing voice guidance in a unit converter. We want the user to say to the system about what type of conversion he wants ...
1
vote
1answer
49 views

How to create a spinner with different font on each spinner item?

Basically I want to let user to select the font of the text. Spinner looks like a thing that could solve my problem if I extented the class.
1
vote
1answer
1k views

How can I style android spinner prompt

I have developed one example. Here I have to style a spinner prompt. Please help me. How can I style it? This is my string.xml code: <?xml version="1.0" encoding="utf-8"?> <resources> ...
1
vote
1answer
224 views

How to change 3D pie chart segment value at run time in android?

i want to create pie chart based on db values and while adjusting the slider i have to change pie chart i created it pie chart and got slider adjustable value. My code is, PieChartDefalut.java ...
1
vote
1answer
442 views

Dynamically position right corner arrow of the ActionBar Spinner based on length of displayed title

In the Google+ App, the position of the right corner arrow of the ActionBar Spinner adapts to the length of the current string showing. For example, the Spinner's length seems shorter when Family is ...
1
vote
1answer
157 views

How to specify a selection event in a custom Spinner DropDownView?

I have a custom adapter to work with "Signal" objects. It extends BaseAdapter and works fine when I customize a TextView and return it from the getDropDownView method of my Spinner. However, I want ...
1
vote
1answer
145 views

How to getting value from checkbox and spinner simultaneously at a time in android

I have checkboxs and spinners just like this: In the above pictures: first spinner asiaSpinner have different countries and others europeSpnner and africaSpinner. If I checked Asia and choose japan ...
1
vote
1answer
238 views

Custom theme for spinner dialog

I would like to customize the appearance of the dialog that appears when I click on the spinner in spinnermode=dialog. I want to use a dialog fragment but I find no documentation. Is it possible?
1
vote
1answer
221 views

Access Spinner from another class

I have a spinner created in the onCreate function. Here is the code: Spinner spinner = (Spinner) findViewById(R.id.spinner1); ArrayAdapter<CharSequence> adapter = ...
1
vote
1answer
310 views

Button + Spinner onItemSelectedListener doesn't work

I'm having trouble using buttons and programmatically spinners, because onItemSelectedListener doesn't work as it has to do properly. I've been googling and searching in this forum, and even there are ...
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
20 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
0answers
59 views

Pause execution of onItemSelected of spinner

How could i stop the onItemSelected Event for a spinner when i use setSelection(position). I'm looking for a clean solution. Thanks
0
votes
0answers
97 views

Android static/dynamic spinner lists display differently

I am developing an Android application that uses two Spinner components. The first has its items assigned using XML at compile-time, the second has its items assigned during runtime. The list of the ...
0
votes
0answers
133 views

Hierarchical spinners or Cascading Menues in Android

I am trying to implement a series of hierarchical spinners or menus where I need to go from Country > State > County > City. The implementation in the CraigsList App caught my eye. It appears that ...
0
votes
0answers
69 views

Unable to pass an arrayadapter to spinner in android

I am using spinner in android. I want to link a spinner with array adapter. But when i populate the spinner, I dont get the items. I dont get any error. Here is my code public class Searchable ...
0
votes
0answers
48 views

update data via soap call in android

Hi i have successfully developed update the data from mysql database via soap call in android application.Here the updation is successfully.but i have faced one problem.if i have to run the app means ...
0
votes
0answers
198 views

Fetching Values from database & Setting it in Spinner

I have developed a spinner which updates the value from a database. Initially I have set the value to Q. When I change the value from Q to C it is updated in the database and the change is reflected ...
0
votes
0answers
230 views

notifyDataSetChanged not updating my spinner

I have 2 spinners with two different adapter's (adapter and adapter2). Based on my selection of my first adapter (adapter), I am populating my second spinner (adapter2). After changing the data in the ...
0
votes
0answers
173 views

Change Value of spinners dynamically according to another spinner value

I have 3 spinners in my view. 1st spinner has fixed initial values. rest of it are empty initially. when i select a value from first spinner , new values are added to spinner 2 and 3 according to ...
0
votes
0answers
47 views

How to assigning Unique ID to each of Spinner Items

I am having a Spinner filled with Names. I want to set ID for each ITem(i.e Name) So that same can be used to retrieve other information from DB. Because Name can be duplicated. Please let me know any ...
0
votes
0answers
138 views

how to achieve Spinner As like android4.0 in 2.2

Present iam creating spinner on android 2.2,but i want to see same look as android4.0 spinner is there any approach to achieve look and feel as like android 4.0 in 2.2
0
votes
0answers
193 views

how to remove the radio button focus on previous selected item in spinner

I have created the spinner which have items in Telugu font. I am displaying the Telugu font using ttf files. And I am overriding the array adapter view method and drop down view method for displaying ...
0
votes
0answers
117 views

Spinner pop-up is not diamissing in Android?

I am doing a project in which I want to use a custom spinner with checkbox and a text view. Until the pop-up view(that is when I click on spinner in UI), everything is correct. Pop-up shows correct ...
0
votes
0answers
94 views

How to show indication at the bottom of spinner list in android?

I want to show indication at the bottom of spinner list. Suppose i have 10 values in array list when i click on the spinner then it shows first 5 rest shown after scroll the list. I want to show ...
0
votes
0answers
16 views

Spinner item comparation with char, how to?

`Spinner Spinner_Elemente_Java; TextView Text_Despre_Element_Afisare; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); ...
0
votes
0answers
97 views

How to store spinner value into phpmyadmin?

I'm new to android and now I am trying to store value into web database but after I press submit it did not store into database. What did I miss in the code there? ...
0
votes
0answers
502 views

Sending selected Android Spinner and executing MySQL Query in PHP page - not working for other spinner options

I am communicating between Android and PHP page. Setting the spinner with values from a PHP (result is got as httpresponse in android) : String addresses[] = result.split(":"); ...
0
votes
0answers
84 views

Android: unable to get the ids of items and display their names in spinner

i am trying to get the ids of items in the server and according to their ids i want to displays their names in Spinner here is my code... EditText ed=(EditText)findViewById(R.id.edit_usr_nam); ...
0
votes
0answers
410 views

Custom View with Spinner within other Layout

What I'm trying to do is create a custom DialogFragment, which contains some default views (label, edittext, buttons) and optionally one of multiple available Custom Views. For testing purposes, only ...
0
votes
0answers
177 views

Android Menu- Spinner in Overflow items when OnClick not showing

I have an activity that has a menu in the action bar. There are two items. One is a spinner and another is a SearchView. On default , the spinner is shown first and is working. When i change o the ...
0
votes
0answers
195 views

fill Spinner from String-Array (multidimensional)

I have a String-Array in the following form: <?xml version="1.0" encoding="utf-8"?> <resources> <string-array name="country_array"> <item> ...
0
votes
0answers
244 views

getting data from server and displaying in spinner in android

i want to get countries names from a particular URL and then want to display them in a spinner using [JSON]. can anybody please help me..provide me some simple examples if you can thanks...
0
votes
0answers
64 views

detect lonc click on Spinner dropdown item

Using regular setOnLongClickListener, I only get the event when the long click occurs on foled/selected spinner item. I need to get that event when it occurs on spinner's dropdown item too... Any idea ...
0
votes
0answers
120 views

Android: Animation bug after making spinner look like a button

I have a button and a spinner in a relative layout. The issue I have is that when you click the button, the on click animation (highlight the selected area [blue by me]) is being activated on the ...
0
votes
0answers
125 views

How I edit spinner?

I mean I want to edit spinner;for example I want to change it s skin, when I click I want to see it different not defauult.Different color different design.How I do this.Thanks. Spinner ss3; ...
0
votes
0answers
654 views

How Can I Style the Android ActionBar Drop-down Navigation?

How can I stylize the ActionBars Drop-down Navigation text/font to the ActionBar.NAVIGATION_MODE_LIST Basically I need to change android:textScaleX factor and I can not figure a way to do so. ...
0
votes
0answers
518 views

how to change spinner simple dropdown item to simple drop down list

which from xml i want to change how to do so ? not from code. i did right click and change layout to spinner_list_item , but it didnot work, this is my xml <?xml version="1.0" ...
0
votes
0answers
192 views

android button and spinner are not working

I have one button, two tabs and one spinner in my android program, both tabs are alright, but no response when click on button or spinner. public void onCreate(Bundle savedInstanceState) { ...
0
votes
0answers
188 views

Error Creating Android Widget(Spinner) Dynamically and Flipping it into Horizontal or Vertical

I am creating Spinners and other Widgets Dynamically. The app works fine in either horizontal or Vertical view But if i am flipping from one to another , the application crashes saying that the below ...
0
votes
0answers
225 views

Android Spinner NullPointerException

I'm populating a Spinner with data from my database. The following is within onCreate method. public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); ...
0
votes
0answers
144 views

Spinner is Empty after OnResume

So I am writing an app that utilizes a spinner backed by a simplecursoradapter. However, when I activate another intent, let's say the camera, and it returns, I have to reinitialize the cursor. This ...
0
votes
0answers
214 views

Android spinner data is not showing properly(Data is not updating properly)

I have three spinner spinnerone spinnerTow spinnerThree I want to display data from database if event is generated into the corresponding spinner. Every thing is working propelly. But prob with ...
0
votes
0answers
1k views

Android Spinners with data loaded from XML

I have two spinners. The first spinner is a list of authors uploaded from a txt file. The second spinner is a list of books that author wrote. Based on the author selected in the first spinner I ...
0
votes
0answers
607 views

Android getting spinner selected item in custom listview

I am using BaseAdapter for ListView. The each row in the custom list view consists a spinner and a button. When i click the button in a list row, i have to get the selectedItem() from the spinner in ...