Tagged Questions
A spinner is a control/widget that allows the user to select an item from a group, like a dropdown list...
68
votes
10answers
127k views
How to show loading spinner in jQuery?
In Prototype I can show a "loading..." image with this code:
var myAjax = new Ajax.Request( url, {method: 'get', parameters: pars,
onLoading: showLoad, onComplete: showResponse} );
function ...
22
votes
8answers
23k views
Good NumericUpDown equivalent in WPF?
I'm looking for a simple NumericUpDown (a.k.a. number spinner) control in WPF. This seems to be another lacking control in WPF. There must be some existing ones out there and I don't like to re-invent ...
18
votes
6answers
43k views
Android Spinner: Get the selected item change event
How can you set the event listerner for a Spinner when the selected item changes?
Basically what I am trying to do is something similar to this:
spinner1.onSelectionChange = handleSelectionChange;
...
11
votes
3answers
19k views
How to get Spinner value?
Is it be possible in the Android Hello, Spinner example to get the selected Spinner value with a listener, like for the other examples -- or do you need to subclass Spinner?
10
votes
4answers
6k views
Android: How to keep onItemSelected from firing off on a newly instantiated Spinner
I've thought of some less than elegant ways to solve this, but I know I must be missing something.
My onItemSelected fires off immediately without any interaction with the user, and this is undesired ...
9
votes
3answers
12k views
Android - configure Spinner to use array
I declare my Spinner in the following manner (it's very static so I
have 2 string arrays in array.xml for titles and values)
<Spinner android:id="@+id/searchCriteria" android:entries="@array/
...
7
votes
4answers
5k views
How can we create iPhone-like spinners in android?
Default spinners on the iPhone look a lot better than on Android. It looks like at least one Android app (UrbanSpoon) has been able to replicate this control, and it's awesome: ...
7
votes
4answers
15k views
Android: Create spinner programmatically from array
I'm all new to Android and I'm trying to create a spinner programmatically and feeding it with data from an array, but Eclipse gives me a warning that I can't handle.
Here's what I got:
This ...
7
votes
4answers
1k views
When do browsers start to render partially transmitted HTML?
I have a long-running report and want to show a wait-spinner to the user while it's generating. I have made this work already but am not sure I'm doing it the best or right way.
This is using ...
6
votes
2answers
2k views
How to set font custom font to Spinner text programmatically?
I have a ttf font file in my assets folder. I know how to use it for textviews with:
Typeface externalFont=Typeface.createFromAsset(getAssets(), "fonts/HelveticaNeueLTCom-Lt.ttf");
...
6
votes
2answers
627 views
Android - Set Spinner Start point
This is probably a simple straight forward thing to do for some.
I have this code...
SQLiteDatabase db = dbs.getReadableDatabase();
String SQL = "SELECT * FROM Table";
final Cursor cursor = ...
6
votes
3answers
16k views
How to set selected item of Spinner by value, not by position?
I have a update view, where I need to preselect the value stored in database for a Spinner.
I was having in mind something like this, but the Adapter has no indexOf method, so I am stuck .
void ...
6
votes
9answers
3k views
How to code a spinner for waiting processes in a Batch file?
I would like to show the user with a spinner, that something is done in background but do not know how this works in a batchfile.
Does anyone have a clue?
5
votes
3answers
384 views
How to use Android Spinner like a drop-down list
It's taken me quite a while to get my head around the Android Spinner. After several failed implementation attempts, and after reading many questions partially similar to my own but without ...
5
votes
2answers
439 views
Deleting last item from spinner deletes the entire list
I am trying to use a spinner control that will enable the user to delete any list element.
I have an 'add' button to add elements to the list, and a 'delete' button that removes the ...
5
votes
4answers
4k views
How to create android spinner without down triangle on the right side of the widget
I have a screen where the user has many items to input so screen space is at a premium.
I want the look of the widget on the screen (before the user presses it) to be similar to an EditText or the ...
5
votes
1answer
2k views
Spinner cannot load an integer array?
I have an application, which has a Spinner that I want populated with some numbers (4,8,12,16). I created an integer-array object in strings.xml with the items mentioned above, set the entries of ...
5
votes
4answers
5k views
Android Spinner selection
The OnItemSelectedListener event handler gets called both when a spinner
selection is changed programmatically, and when a user physically clicks the spinner control.
Is is possible to determine if an ...
5
votes
4answers
3k views
setSelection on Spinner based on rowId
I have a Spinner View that's populated through a SimpleCursorAdapter. Based on the selection I need to save the rowid in the entry database (position won't work because things can be added and deleted ...
4
votes
1answer
102 views
iphone like spinner for android
I Need a custom behavior for android as it is in iPhone.
iPhone's default number picker
Currently I need an arrangement for selecting the numbers as given in the above picture.
I tried ...
4
votes
1answer
139 views
Close Spinner on click outside of Spinner
I want to close an Android spinner once I click outside of the Spinner. Is that even possible?
4
votes
4answers
737 views
wpf loading spinner
The goal is to display the information that the application is working. So I'm looking for an intelligent implementation sample of a loading spinner using wpf / mvvm.
Any hint is welcome.
4
votes
1answer
153 views
Help with timing of spinner selection
In my Android app, I have a sound that I want to play when a certain selection has been made from a spinner, but I want it to play the when the user actually makes the proper selection (or just ...
4
votes
2answers
1k views
Fragment loading spinner/dialog in Honeycomb
When loading data into my Fragments I would would like to have an indeterminate spinner in the middle of the fragment (example in pic below) to show the user that content is loading within that ...
4
votes
2answers
229 views
How to know if a spinner item has been selected in android?
How can I know if an item in spinner has been selected in android??
4
votes
1answer
937 views
Android OPEN spinner with single button click
I have implemented button which clicks and opens dialog with spinner inside as described here:
http://www.dotnetexpertsforum.com/dialog-box-with-spinner-view-in-android-t1485.html
However this is two ...
4
votes
2answers
1k views
Multiple spinners and onItemSelected
I have two spinners that trigger the onItemSelected event. The question is How can I know which one triggered such event ? So far I tried:
public void onItemSelected(AdapterView<?> parent, ...
4
votes
4answers
2k views
How to change the Spinner font color?
I'm having an issue with the Droid X phones where users say that the font color turns out to be white in the spinner, making it invisible unless the users highlight the items. No other phones seem to ...
4
votes
1answer
947 views
Refreshing a Spinner
I have a view with a spinner. The activity starts another acvitity with a popup where I add or delete values that the parent shows in the Spinner.
So, in onActivityResult() I refresh the content of ...
4
votes
4answers
9k views
How do you get the selected value of a spinner — Android
I'm trying to get the selected items string out of a spinner. So far I've got this:
bundle.putString(ListDbAdapter.DB_PRI, v.getText().toString());
This doesn'y work and gives a casting ...
3
votes
2answers
32 views
Android Spinner.setSelection() dosn't work
i'm haveing a spinner which is populared with a CursorAdapter. Now when creating that spinner (dynamicly) i want to set a default selection different to 0 (0 being the first item in the CursorAdapter ...
3
votes
4answers
50 views
android screen orientation handling for spinner
I have a activity in which there is a spinner. since for portrait and landscape mode i have different layout so I am changing layout in onConfigurationChanged method
@Override
public void ...
3
votes
2answers
80 views
Android: value of one spinner depends on value of other spinner
I have a problem on Android Spinner.In my application I created two Spinner on main layout. 'State' Spinner and 'District' Spinner. All the data on Spinner are stored in SQLite database. I want do ...
3
votes
1answer
39 views
Creating a spinner dynamically
I was struggling to create a spinner dynamically. I had it on the page but every time I tried to select an option it would blow up. My original code is at the bottom. I fixed it by moving the ...
3
votes
2answers
357 views
Android populate spinner from php/mysql query
I am using the CustomHttpClient to connect and do queries from my android app. I was wondering if it was possible to populate a spinner from a php/mysql query and if so how it would be done?
3
votes
1answer
84 views
Is there a free date/time entry spin-wheel control for Silverlight?
Not sure what this control is actually "called", but I'm looking for a free version of one of these for Silverlight:
Does anyone know of something like this?
3
votes
1answer
561 views
How to stop the spin.js spinner with jQuery
just used the cool spin.js (http://fgnass.github.com/spin.js/) with jQuery.
I'm appending the spinner with something like this
$('#students-list td:nth-child(5)').live('ajax:before', function(){
...
3
votes
1answer
102 views
Spinner message with cache enabled
I am using jQuery 1.6.2 and jQuery UI. I would like to show a custom message on tab AJAX loading. I have two tabs (as in the official documentation) and I like to display a "spinner" message inside ...
3
votes
1answer
427 views
How would I create a Spinner for use as an Action Item?
(Android 3.0+) How would I create a Spinner for use as an Action Item for Android Honeycomb's Action Bar? I understand that the Action Bar's LIST mode pretty much does that, but I would like to use ...
3
votes
3answers
2k views
Populate Spinner dynamically in android from edit text
I have one spinner in which few values are there from strings.xml and I want to populate that spinner dynamically from edit text using onclick event of Button but somehow it's not working and I am ...
3
votes
2answers
904 views
set spinner mode in XML
When defining a spinner in code, you can set the mode to 'dialog' or 'dropdown':
Spinner(Context context, int mode)
Construct a new spinner with the given context's theme and the supplied mode ...
3
votes
3answers
692 views
Can't change the color od spinner divider
My spinner is defined like this and it seems android:divider="#66BC31" has no effect, i still get white divider:
<Spinner
android:id="@+id/spinner"
android:layout_width="fill_parent"
...
3
votes
1answer
377 views
How to update spinner view as I type?
I'm making a trivia game, and would like a way for users to submit their own questions via email.
So what I have are four edittext fields, and then a Correct Answer section with a spinner. I want the ...
3
votes
1answer
967 views
spinner adding string array on item selection how can get item related value in android
i am developing one spinner this spinner i am string array
spinner = (Spinner)this.findViewById(R.id.mlg);
final CharSequence[] itemArray =getResources().getTextArray(R.array.RectBeam);
final ...
3
votes
2answers
759 views
getting String value from a Spinner backed by CursorAdapter from SQL query in Android
my code here is horribly wrong, and i'm not sure how you would properly do this. i have a Spinner which is populated from a SQLite database query through a CursorAdapter. i need to get the text ...
3
votes
3answers
4k views
Text color of a closed spinner
I understand that the closed spinner is actually a View, I think. But I am guessing it has a TextView there somewhere to show the text. How do I get access to that TextView so I can change the ...
3
votes
1answer
1k views
Android Spinner with different layouts for “drop down state” and “closed state”?
I have an Android Spinner view in my layout. I would like that spinner to show only a single text item when closed, but when the user clicks on it (i.e. opens the spinner dialog) I would like to show ...
3
votes
1answer
469 views
Can user unselect the value in the spinner?
If an Android Spinner is not empty, and has a selection, can a user do anything to put the spinner into the "nothing selected" state?
3
votes
1answer
2k views
Using SimpleAdapter with Spinner
I am new to Android development. I am trying to populate a spinner by using the SimpleAdapter. But spinner's list is showing blank element. When I click any element, its text is shown properly in ...
3
votes
4answers
945 views
Implement NumericUpDown spinner control on Windows Phone 7?
I need a control to enter small numbers on Windows Phone 7 and would like to have some kind of endless spinner control like the one for entering day and month and the date setting of the device.
Is ...