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

0
votes
0answers
37 views

Horizontal spinner android

i am trying to make a horizontal spinner in android like this one Wheel Spinner but horizontally. Any idea on how to do that in android?
0
votes
0answers
80 views

how to fix the ui of dropdownlist of a spinner in android

I am working with a spinner whose dropdown is coming in augly look like this pic: in this i am working with the spinner like this: <Spinner android:id="@+id/spinnerTitle2" ...
0
votes
0answers
102 views

Swipe to dismiss for Android spinners

Is it possible to swipe to dismiss Android spinner items. If so, how? I can't seem to find resources online specifically for swipe to dismiss + spinners
0
votes
0answers
58 views

Android horizontal spinnerwheel runtime linking failed with errors Failed resolving and VFY: unable to find class referenced in signature in runtime

I am looking for a horizontal spinner wheel sample for Android and thanks to Yuri Kanivets and Dimitri Fedorov, I found android-spinnerwheel on Github. After added both the library and demo to ...
0
votes
0answers
44 views

Status/Navigation bar flickers/blinks when spinner item appears

I'm working on an android app on Nook Color device. When I click a spinner and its items pops up, at that time status/navigation bar flickers couple of times. Also, when I select an item from that ...
0
votes
0answers
98 views

Android - Spinner Selection Overlap in SherlockActionBar 4.2 on JellyBean 4.2

Has anyone seen this spinner problem in JellyBean 4.2? Does any one know how to solve this issue? Initially everything looks fine, but when I select one of the other items from the spinner the values ...
0
votes
0answers
37 views

How to get the Spinner items that I have selected using the layout

I am working on a project in which I need to dynamically add TextView and Spinner as well from the program. I was able to add these two things dynamically from my program successfully. I am doing all ...
0
votes
0answers
69 views

IcsSpinner Coloring

I'm trying to use IcsSpinner (Outside of an action bar from ActionBarSherlock). I have my spinner working, but coloring it isn't working out. This older question isn't addressing what I'm trying to ...
0
votes
0answers
74 views

Spinner performance in expandable ist view

I have an expandable list view with four spinners in the childView . The list looks something like this Group1 //Parent //Child TableRow TextView Spinner 1 Spinner 2 TextView Spinner 3 ...
0
votes
0answers
141 views

XML SAX Parsing in Android

I have parsed xml data from assets and into a spinner. I am displaying the first 2 lines of the data in a spinner and when selected I am trying to display the rest of the data for that specific select ...
0
votes
0answers
64 views

It's possible do a marquee spinner in android?

I have a big string to display on the spinner, it's possible to do a marquee (auto movement) after select it? There are another options?
0
votes
0answers
184 views

Styling spinner popup list on older device android(2.3.3)

I am using action bar Sherlock. I want too change background color, text color, and divider color of spinner popuplist. In ics version it show me drop down list and I override that properly. But for ...
0
votes
0answers
105 views

Styling spinner popup list on older device android

I am using action bar Sherlock. I want too change background color, text color, and divider color of spinner popuplist. In ics version it show me drop down list and I override that properly. But for ...
0
votes
0answers
140 views

Parsing JSON data and adding in spinner

I have created an activity which pulls data from JSON and data is not getting displayed on Spinner view but when I'm trying to print a data on a logcat the data is displayed. Here is my code: ...
0
votes
0answers
120 views

Android Spinner Action Bar removing underline

http://i.stack.imgur.com/OGxbu.png Above is image of my action bar. First question. How do I remove that underline below text "Hot Picks" but keep bottomRight triangle? Second. How do I make topLeft ...
0
votes
0answers
91 views

Spinner in devsmart.horizontallistview doesn't work

If I add Spinner into standard ListView it works perfect, but when I use devsmart.horizontallistview (from here) instead of ListView, then Spinner's onItemSelected calls only after ...
0
votes
0answers
53 views

Add data dynamically to spinner

I want to dynamically load spinner with my messages and their id, i am getting the messages as below this is in my util class public List<Message> getMessages(String type) throws Exception{ ...
0
votes
0answers
83 views

Android: how to concatenate spinner value with value in edittext

I have few issues with the spinner, i am implementing spinner as below spinner1 = (Spinner) dialog.findViewById(R.id.quesspinner); ArrayAdapter<CharSequence> arrayadapter = ...
0
votes
0answers
19 views

getting the selected string from spinner

I am an amateur android programmer for android platform. Here in this how to get the user selected string value from the spinner? And how to assign integer to that string value? Pls help me out.. ...
0
votes
0answers
39 views

Adding the imagebutton to the spinner row makes it unselectable?

I'd like to have a spinner with ability to select an item and to click on the button. This listener works spinner.setOnItemSelectedListener(new OnItemSelectedListener() { @Override ...
0
votes
0answers
256 views

How to save and display data in listview from the selected item in spinner?

What I'm trying to do here is populate spinner, button show displays data in listview according to to the selected item, and save data still according the selected spinner.My spinner works fine as it ...
0
votes
0answers
58 views

Spinner Doesn't show the selected item after selected (Android Java)

We have on spinner in the activity, and after choosing an item from the list (its a list that comes from Parse) and shows it. The item is not displaied.. Can you assist? Thanks public class ...
0
votes
0answers
247 views

Spinner in ListView Android

In my application I have implemented the ListView which containg Spinner and TextView but I'am not able to get the values from the spinner when i click on the spinner. I have implemented the ...
0
votes
0answers
121 views

Android: problems comparing two Spinners

I have a small problem. I want to compare the value of two spinners, i have alt of methods to do it, but it seems it wont work. Here is the code in my fragment, not activity. I have tryed several ...
0
votes
0answers
286 views

change spinner arrow icon android from code

I have a spinner and I want to change the following things in it 1- Background drawable 2- Icon 3- Text size 4- Text Color 5- Text Style 6- Highlight color I have made my custom adapter that extends ...
0
votes
0answers
363 views

Adding spinner in Sherlock action bar causes forced closed of application in older version of android

Hi I am developing small android application in which I am using Sherlock activity and two Sherlock fragments. Now I want to add one spinner in actionbar and and its working fine in higher version of ...
0
votes
0answers
89 views

How to link a style attribute for the spinner dropdownitem?

I would like to customize my spinner items so that it uses my own selector (resource) for showing the states disabled, pressed, focused and default. With resource i mean the xml where all the states ...
0
votes
0answers
82 views

Selection on second spinner not working

I am developing a page with 2 spinners, where the first spinner has some category populated from DB. Based On the value selected from spinner1, the selectedCategoryName is passed in the method ...
0
votes
0answers
68 views

How do I populate a spinner from another activity?

My requirement is too populate a spinner from another actvity. The Main activity: protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); ...
0
votes
0answers
55 views

Android-Spinner: display sizes

I am trying to implement two different sizes for spinnner and the options in that spinner. I want to display the spinners in smaller size so that I can fit as much content as possible & at the ...
0
votes
0answers
70 views

Views not drawn properly

I have a problem with views not being redrawn properly. I am using drag and drop to be able to drag items from a ListView in two ObjectViews (a subclass of TextView that can store one object) and vice ...
0
votes
0answers
52 views

Adding default None value to a spinner from DB cursor

I have a spinner which is populated with DB values returned in form of Cursor.but it always have first value as selected. What I need is to have a "None" value instead od ffirst DB value. I know we ...
0
votes
0answers
72 views

How to implement OnSelectedItemListener for a Fragment?

I have an application with 2 Fragments. One of the Fragments has 2 Spinners. The user selects a value in the first Spinner and this then sets the Adapter etc for the second Spinner. The problem is ...
0
votes
0answers
14 views

how to make spinner store the value but not disply the name

Is it possible to make spinner store the value but not display the name in spinner, i am making an images as spinner, but the names in my array are displaying on the image. how to remove that.
0
votes
0answers
215 views

Spinner with label/hint/placeholder inside always visible

Is it possible to have a Spinner in Android with a label that is always visible? For example a spinner that indicates a gender. The left side of the spinner should have the label ("gender"). The ...
0
votes
0answers
55 views

Android spinner items not looking properly in phone

i am using spineer in my android project but after clicking on it it shows me list of item in it on screen but it is too small in height can we increase the height of it? can we fill up the entire ...
0
votes
0answers
116 views

Android custom spinner styles further

first I want to say this is not creating same thread for custom spinner styles. In my application I like to show a string and a image at the spinner But when I go through the documentation I notice ...
0
votes
0answers
129 views

Custom Spinner TextView is being cut off

So in the attached screen shot and the code sample you can see my custom spinner. As you can see my text is getting cut off no matter what I try to do. The nine patch image is set up correctly with ...
0
votes
0answers
173 views

Android - Populating spinner from external database

i'm using an external server to populate my spinner, however even after trying out many tutorials, I am unable to do so. I have included part of my AsyncTask and my LogCat output. Any ideas what is ...
0
votes
0answers
28 views

when i inflect a another layout in dynamic the spiner is not working

this is my main class for calling spinner by using inflater @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); ...
0
votes
0answers
252 views

Android default spinner list selection color changing randomly

I am trying to implement a drop down list in Android. Here is the Spinner which I am using in my layout.xml <Spinner android:scrollbars="vertical" ...
0
votes
0answers
240 views

How do I change the color of the spinner when using NAVIGATION_MODE_LIST?

I can't seem to figure out how to make the spinner turn white: What style do I need to apply to get it to change to white? I'm using ActionBarSherlock. Relevant code: public void onCreate(Bundle ...
0
votes
0answers
118 views

Completely customized spinner with transparent background

I have already customized some part of my spinner with the row layout and so, but I need to set transparent background and no fading edges in that spinner. I want to remove it or at least make it ...
0
votes
0answers
29 views

How to control sounds in a spinner when the view is displayed

I have an activity implementing OnItemSelectedListener which displays a spinner playing sounds according to the selected position. My problem is everything works fine when the user first access the ...
0
votes
0answers
78 views

Android: Store Spinner Selected Value

I have created a spinner that fill data from database. Assume, user select item from spinner and press back button.(or any other button in my android app). then user do some other stuffs and came ...
0
votes
0answers
97 views

Android parse xml and populate spinner

I got an xml file that look something like- <country name="Ταϊλάνδη"> <city name="Bangkok"> <lat>13.750000</lat> ...
0
votes
0answers
123 views

error when initializing spinner inside popup window

this is the logcat plz help me 11-18 02:20:17.035: E/AndroidRuntime(2892): android.view.WindowManager$BadTokenException: Unable to add window -- token android.view.ViewRoot$W@40986630 is not valid; ...
0
votes
0answers
167 views

How to get data from Wamp server Database on spinner in android

I have taken spinner and have database in Wamp Server.. I want to get data like Product Name and Product Image from database on spinner in android.I have done from different ways but not working..can ...
0
votes
0answers
193 views

Android Spinner from server

i have a spinner in my apps. that spinner will be filled some data from server. in my logcat, i was successfully parse JSON data but i don't why when i tried setting up the adapter i got ...
0
votes
0answers
99 views

Android Actionbar: Replace spinner with single button/icon?

Can the spinner for list navigation in an actionbar be replaced by a single action item button so I can give it an icon? It would be similar to a submenu look, but I want to populate the navigation ...