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
0answers
106 views

Android: Wrapping long text in Spinner

In my string array i have a long text that I want to display in my Spinner(this Spinner is in a dialog)..i tried the below code spinner1 = (Spinner) dialog.findViewById(R.id.quesspinner); ...
1
vote
1answer
90 views

Spinner scrolling crashing application

I have a spinner which gets loaded through web-service call and it is working fine, but when I scroll it or select item second time it crashes the application. On first click it is working fine. I ...
0
votes
0answers
104 views

css spinner vertical alignment

I am having problems trying to middle vertically align a spinner icon that is located within a table but the layout is ending up completely different in different browsers. Any idea how to sort out ...
0
votes
1answer
49 views

Android spinner reports null value in oncreate

I have this code in my onCreate and I get a null pointer exception if I uncomment the sortMode(position) line. The log works just fine though, which seems weird to me. What am I doing wrong? I want ...
1
vote
2answers
90 views

Android spinner dont draw selected item

I have a spinner with three items in it <string-array name="menuitems"> <item>one</item> <item>two</item> <item>three</item> ...
2
votes
1answer
59 views

Change Spinner content on opening

I've a Spinner and its content depends on actual location (GPS position). So the content should changes continually, but it's only visible to the user when he/she selects an item. Instead of having a ...
1
vote
0answers
77 views

Accessing the Spinner's Layout and set its TextView

I am trying to set the TextView of the Spinner, but I cannot reach it. There are many solutions about this issue but all of them solve from Spinner Adapter. In my issue I must not change the text from ...
0
votes
0answers
243 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
3answers
114 views

How to get Item Selected in Spinner?

I have a spinner in my DIALOG and I want to get the item selected when i clicked OK button. Everytime I press "OK" in dialog. a NullPointerException always comes out. NOTE: My Spinner is at the ...
0
votes
1answer
169 views

Spinner's getSelectedItemPosition() method returns unexpected results

My app has a spinner with four entries in it. I need to be able to retrieve which of these labels is selected, not the actual labels themselves. Below is my partial code for doing this: // Set up the ...
0
votes
2answers
82 views

How to add spinner on index view to fetch in Backbone?

This is view of my collection: Network.Views.Offers.Index = Backbone.View.extend({ initialize: function() { _.bindAll(this, 'render'); this.collection = new Network.Collections.Offers(); ...
1
vote
2answers
352 views

How to change the Text color of Spinner [duplicate]

Please help me on changing the text color of the spinner.
0
votes
3answers
261 views

Mono for Android: Spinner ItemSelected event triggers on load but shouldn't?

I have a spinner with a few values and I fill it from my webservice. Filling the spinner int i = 0; var dropItems = new List<SpinItem2>(); DataRow[] result = ...
0
votes
1answer
72 views

Application randomly crashes when spinner is clicked

I have 14 spinners on one activity and when I click one, the application crash. This happens completely randomly so I have a hard time figuring it out. Its not always the same spinner who crashes, it ...
0
votes
1answer
29 views

on MAC, I have to show a busy window with a cancel button and spinner

On MAC using XCODE and Objective-C, I need to display a small "BUSY" window containing a spinner and a cancel button. This will prevent the user doing anything else in my application until I finished ...
0
votes
0answers
105 views

How to get value from the spinner and datepicker and store it into the sqlite?

May i ask how do i get the value from the spinner and store it into sqlite. I can display out the values i insert into the spinner. however i want to get those value i insert into the spinner and ...
0
votes
1answer
131 views

Different content for each Spinner item in the same Activity

How can I show different content after selecting an item from the Spinner? I want to create a Spinner with locations of chain stores. Ex: When I chose Adress1 from Spinner, immediately under the ...
0
votes
1answer
40 views

Additional actions following spinner choice

My code is similar to the following: package com.javasamples; import android.app.Activity; import android.os.Bundle; import android.view.View; import android.widget.AdapterView; import ...
0
votes
1answer
98 views

Data Not Showing from database to Spinner

I am developing a small app in which i have to used a spinner with database. I am using spinner.setOnItemSelectedListener(this); loadSpinnerData(); My loadSpinnerData() is below ...
-1
votes
1answer
61 views

How can I get the time of GMT + 2 and put it in item of in 24 hours in the spinner (hours and minutes only)? [closed]

Example 3:50 = this is time of GMT +2 and putted it in item of spinner by 24 hours. 4:20 TO 12:50 Thank you for sharing ideas.
0
votes
0answers
83 views

Set Press State on Android Spinner DropDown

I am setting a custom background color to a spinner dropdown like this: @Override public View getDropDownView(int position, View convertView, ViewGroup parent) { View view = ...
2
votes
0answers
67 views

Highlight the pre selected spinner item

Say I have 10 items in the spinner list. And item number 3 is already selected. Now the thing is when user wants to change his selection, I want to give some kind of indication that this(item number ...
0
votes
0answers
120 views

How to get Spinner value?

I have created a Spinner in my MainActivity. Above the User is able to type in some text. I am able to display its value in a different Activity. Now I want to display the value chosen in the spinner. ...
1
vote
1answer
79 views

How to get selected value from a spinner with two item

how to get selected item name from spinner..? this is my code Spinner sp; ArrayAdapter<String> adapter; String numbers[] = { "AM", "PM"}; sp = (Spinner) findViewById(R.id.timing); adapter = ...
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 ...
2
votes
0answers
286 views

Spinner does not apply dropDownSelector attribute

I'm using spinner and want to add spinner - to change behavior depends of states(focused, pressed) sample project is here https://github.com/vovs/spinner_issue My code: activity_main.xml ...
0
votes
1answer
404 views

Android Text color for Spinner with custom Style

I'm trying to set the text color for the Spinner style defined below. However I get the error "Error retrieving parent for item: No resource found that matches the given name 'Widget'." What should ...
0
votes
0answers
51 views

Multiple Spinners on page - code check please

I have a simple xml layout with 2 spinners (spinner1 and spinner2) When implementing the 2nd spinner, the bottom spinner is not populating. I can't seam to see what I have done wrong. I am calling ...
0
votes
1answer
152 views

Spinner Default Theme to EditText android

I have EditText and I want it to be shown in the same theme of Spinner , with background and arrow because I have made this EditText Clickable and it is open a custom popup
2
votes
0answers
211 views

android Spinner followed by ListView - onItemSelected not called

I have had a good search around and can't seem to find an answer. The method onItemSelected is not being called. Here's the code featured in my activity's onCreate method: @Override protected ...
0
votes
2answers
222 views

how to clear spinner value in android

i have two spinners when i select items(other then first item) in first spinner which is saved in array it populates data in spinner second which comes from web services. i want that when i again ...
0
votes
1answer
291 views

(Android) Two-dimensional array and Spinner

I have a (simple) two-dimensional array. What I am trying to do is populate spinner with data from that array. String ap1[][] = new String[5][2]; ap1[0][0]="First item"; ap1[0][1]="1"; ...
1
vote
1answer
94 views

Expanding Spinner Items

I'm currently implementing a Spinner in Android and having trouble getting two arrays linked with the Spinner- one for when the spinner is not expanded, and one for when it is. So the spinner would ...
0
votes
2answers
92 views

Unable to get desired background for IcsSpinner

This is the Spinner Code: <com.actionbarsherlock.internal.widget.IcsSpinner android:id="@+id/mSpinner" android:layout_width="wrap_content" android:layout_height="wrap_content" ...
0
votes
2answers
843 views

Cannot use this in a static context android spinner

I am trying to add few items in the spinner list. But somehow everytime, I always get the below exception on this- Cannot use this in a static context Below is my code public static void ...
0
votes
1answer
127 views

Android nullpointer exception with spinner

I am recieving this error and I don't know why: 02-02 22:00:59.207: E/java.lang.NullPointerException(6258): null 02-02 22:00:59.207: E/java.lang.NullPointerException(6258): ...
0
votes
2answers
87 views

Android Spinner on click crashes the application

I have defined a spinner in my app that loads on start of the main activity. The activity loads successfully and also loads the spinner with the values from a String array from another class. ...
0
votes
0answers
67 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
1answer
154 views

Custom Spinner with an EditText field and an Image button

I'm trying to create a custom spinner which uses an EditText field, and an ImageButton. I however cannot find how to get the same pop up menu I originally had in my Spinner to show after pressing the ...
0
votes
1answer
218 views

Spinner OnItemSelectedListener Method in Android issue

I have 3 spinners in my xml.. 1. one is Product Name 2. one is Product Quantity. 3. and 3rd one is Discount Now, i calling separate Listener for each one.. the problem is i want to use item ...
0
votes
0answers
72 views

part of spinner item list is hidden

I changed the theme to holo.light and now a part of the items list of the spinner will be hidden when the spinner is at the bottom of the screen. (There are 6 items in the spinner item list) Why is ...
0
votes
2answers
255 views

Mono for Android: Listview scrolling issue with spinners and edit text

My problem is on two fronts. First issue: Scrolling amnesia I have a ListView with spinners and edit texts. It acquires it's data from webservice. The problem is when I write up a value on the ...
5
votes
1answer
290 views

Set Gujarati text on Spinner in Android

I am developing an Android app in Gujarati language, need to set Gujarati text on a Spinner widget. So, I learned how to set custom fonts on Spinner from HERE. But the problem is I am getting boxes ...
5
votes
3answers
426 views

Android: Spinner dropdown with selected item at top position

I have an issue with the Spinner in Android. Selecting an item from the dropdown will adjust the offset of that dropdown the next time it is opened. So for example if I choose item 100 in a 500 item ...
0
votes
1answer
50 views

android nullpointer when setting spinner adapter

I get this error: 14:03:44.170 322 hnlapp.hairdresser ERROR AndroidRuntime FATAL EXCEPTION: main 14:03:44.170 322 hnlapp.hairdresser ERROR AndroidRuntime java.lang.NullPointerException ...
0
votes
0answers
128 views

Showing spinner in Gmap infowindow while ajax loads

I am populating a google map infowindow on marker click using ajax. Everything is working as expected, i.e., I am able to load the content in the infowindow, however I would like the infowindow to ...
0
votes
0answers
19 views

Kindle fire defaults to spinner

My app is designed to use a tab bar, but Kindle defaults it to use a spinner which renders my labels invisible. is there any way to force Kindle to use a tab bar?
0
votes
2answers
88 views

problems in android spinner

I want to display messages based on selection of value from spinner. so i used folowing code. sp=(Spinner)findViewById(R.id.spinner1); String ar[]={"hello","abc"}; ...
0
votes
4answers
83 views

Setting the value of the spinner dynamically

I have an ArrayAdapter as follows ArrayAdapter<String>dataAdapter = new ArrayAdapter<String>(this,android.R.layout.simple_spinner_dropdown_item); This is the adapter which I am going to ...
1
vote
4answers
137 views

How to retrieve spinner value from sharedpreferences? ANDROID

Hello I have a profile layout file wherein it saves the data the user inputs. This layout has checkboxes, textviews, and spinners. Then it will be viewed in my userprofile layout file as in textviews. ...

1 3 4 5 6 7 36