A spinner is a control/widget that allows the user to select an item from a group, like a dropdown list...
1
vote
1answer
68 views
Add a “Please Select” option to a Spinner in Android
I have a Spinner which is filled from a query using a SimpleCursorAdapter, this works fine... but now I need to put an option "Please Select" before all the items retrieved from the query, just for ...
0
votes
0answers
9 views
Can I insert a spinner answer in to another .xml form using a button
here is my code from the java class lunch
public class Lunch extends Activity implements OnItemSelectedListener {
Spinner spinner;
Button button;
String[] path = null;
String[] paths = { ...
0
votes
2answers
93 views
setOnItemSelectedListener is not seen in spinner for android
please could you help me to found what is the problem with the following code !
when the item from spinner selected nothing occurs
i.e : the body of spinner.setOnItemSelectedListener is not seen ...
0
votes
1answer
27 views
Android Spinner from a Directory - Only show part of filepath and only files with a certain extension?
I currently have a spinner that is populated using the following;
File sd = new File("sdcard/");
File[] sdDirList = sd.listFiles();
// String[] filenames = ...
0
votes
0answers
46 views
Dismiss spinner's dialog when user presses out
First of all sorry for my english. I know it isn't very good but i hope you can understand me. I've been looking into this for some hours. I have created a spinner in a layout file setting the ...
3
votes
1answer
128 views
Two Spinner menu items in ActionBar width
I've manually built two spinners in the Action bar, by creating at first two menu items in the main.xml file. With the line
cSpinner.setAdapter( ArrayAdapter.createFromResource( this,
...
0
votes
0answers
18 views
Define individual callbacks in the extending activity for a universal action bar
I have created a class to hold an action bar which I will be using within multiple other activities.
I have done this to save reproducing code.
I am creating a spinner from a resource, in my ...
0
votes
0answers
63 views
Populate TextViews based on spinner selection and row ID database value
I want to display data from the specific row ID in to textViews. The row ID that I want to display depends on the user Spinner Selection.
For example:
The user select the second option on the ...
0
votes
1answer
118 views
Create a spinner programmatically android
I want to create a spinner without using xml. I am new in android and my knowledge is limited. By now i have this code (see above) and i want my spinner in on of the tabs of my TabActivity.
There is ...
-1
votes
0answers
36 views
string values spinner using JQuery
I am new to JQuery. I have to create a spinner using JQuery-UI or HTML which should display strings as its values instead of numbers. For example a string array contains "Mon", "Tue", "Wed" etc. the ...
0
votes
1answer
45 views
How to change object's value when spinner is selected?
I have an object :
PanggilOlahraga( nama, met, waktu, kalori )
and i have a spinner, that contains 'waktu' values.
I want to change 'waktu' value, when spinner value is selected.
@Override
...
0
votes
1answer
27 views
How to create a spinner with imageviews and Textviews
I'd like to create a spinner with a list of names, and a list of ids from many .jpg's
I have a class with a String[] wich contains the names, and a Integer[] with the ids of the drawables.
My main ...
0
votes
0answers
63 views
Attach jquery ui spinner to flexigrid cell
I need to add a jquery ui spinner in my flexigrid table, i read this answer and try it, the html code works:
<input id="spinner" name="value" />
But the spinner() from jquery doesnt work:
...
0
votes
2answers
75 views
Spinner in action bar: NullPointerException on setAdapter (Android - Java)
I'm trying to put image + text inside a Spinner, but I have a NullPointerException on setAdapter.
It's all the afternoon I'm trying to fix that, but I can't figure out where is the problem.
Help will ...
0
votes
0answers
57 views
How can I show spinners during different Ajax requests?
I want to show spinners when making differebt Ajax calls.Now, I can show a spinner under a combobox, but I want also to show one more spinner(it can have the same properties with the other spinner) in ...
0
votes
1answer
48 views
How to use spinner as time picker in android?
Is there any way to use The spinner as Time picker in android?
If so how? if not why?
suggestions please
Thanks for your precious time
0
votes
2answers
52 views
Automatically Populating a Spinner Based On Previous Spinner - android
I have this code so far. The Model Spinner automatically populates according to what the user picks for the Manufacture. (For the code below I only have it set up for BMW). Is there any way for the ...
0
votes
1answer
45 views
How to keep some static data for future use in spinner?
When app starts, I got some static data (array) from server and I need to use this data for spinner, on different activitis. So this data should be available from different activities at different ...
0
votes
1answer
33 views
Multiple spinners in ActionBar
I use ActionBarSherlock, in which I set the navigation mode to 'list'
getSupportActionBar().setNavigationMode(ActionBar.NAVIGATION_MODE_LIST);
...
0
votes
0answers
60 views
Android Spinner bug Text increases size on scroll
Has anyone had this happen. This happens if the spinner has to scroll. The font gets huge. There is nothing special about the spinner. The code is below.
Layout xml
<?xml version="1.0" ...
0
votes
1answer
38 views
Spinner return default number when i write comma
the problem is that since i write comma in my spinner and then i spin, the value return automatically to default(min or max) number, is there any solution to make it like this:when the user writes ...
0
votes
2answers
84 views
Set and get text from spinner
I am trying to set text to a spinner like you would do with a TextView and also get text like that. I want the Spinner to behave like the one in the Contacts App where you can set a Date for Birthdays ...
-1
votes
2answers
58 views
Add plus sign in spinner (Jquery)
i'm trying to add a sign (+) in my field with spinner but it return each time the number without sign, can i solve this problem somehow?
var spinner = $( "#spinner" ).spinner({
step: 0.25,
...
0
votes
0answers
153 views
Android Dialog with Spinner at bottom => dropdown not fully working
I have a simple dialog with an EditText and a Spinner... The Spinner only has two items and is at the bottom of the dialog...
When using dropdown-mode, only ONE item is shown in the dropdown list, if ...
0
votes
0answers
92 views
Android Dynamic Spinner, Prevent popup if empty and show alert dialog instead
I have a screen which has 4 Spinners which are dynamically populated, when the screen loads some xPath is called in the background which populates the first Spinner. When you select the value in the ...
0
votes
1answer
93 views
how to set array in listview android [closed]
I am using listview in my app and firstly i update listview from add button but later i need to select more items so for that i need to move to another page to pick value so for that i am using intent ...
0
votes
0answers
56 views
spinner with textview and ratingBar
I'm working on a spinner custom of each item has a TextView and a rating Bar The view is correct, but the click on the item does not close drop-down menu.
mainActivity.java
public class MainActivity ...
0
votes
1answer
96 views
Get value from spinner and change Text View depending on that value
Ok this should be straight forward but i'm having difficulty with it. So far i've got this code.
public void onItemSelected(AdapterView<?> parent, View view, int position,
long id) ...
4
votes
1answer
34 views
Jump to spinner selection
I have a spinner (Actionbar Sherlock Widget) with 20-30 elements; the last one is selected.
After opening the spinner, i have to scroll down to the selection. Is there a way to open the spinner and to ...
0
votes
1answer
73 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
0answers
9 views
How do I obtain a value from 2 selected options in spinner
I am new to android and have reached a stumbling block. I am unable to return a number based on 2 conditions set by 2 spinners in a parent activity. Can you help?
0
votes
0answers
27 views
spinner - the application has stopped unexpectedly error
im making a spinner and get this error. This is my main class:
package com.spinner;
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import ...
0
votes
1answer
93 views
Populate spinner with years dynamically in Android?
I have been racking my brain trying to get this to work. I want to dynamically enter in years from 1900 to the current year into a spinner. I don't think that this is possible to do using an XML ...
0
votes
0answers
23 views
Need to change size of spinner button
I am trying to change the size of a spinner button. As you know, there is text and an arrow symbol within a container that looks like a button. I need the whole thing to be 75% of its default size.
I ...
0
votes
0answers
18 views
Spinner text not animating with ellipsize
I have normal spinner using normal ArrayAdapter with String list.
the problem is that some of the records are quite long and i want to use ellipsize to animate them. except that it doesnt work. in ...
0
votes
1answer
44 views
How to address views inside a fragment?
I'm sorry for my ambigous question title. I'll try to clarify my issue.
I've tried running this code to populate my spinner:
public void UcitajPromenljive(int id)
{
if(id==0)
{
...
0
votes
0answers
19 views
Spinner Dynamic from Database
I have spinner dynamic like :
Spinner spin_transaksi;
String[] kodetransaksi = { "PM1", "PM2", "PM3", "PL1", "PL2", "PL3" };
HashMap<String, String[]> hash_kodetransaksi = new ...
0
votes
0answers
123 views
OnClickListener on listview populated on spinner change from AsyncTask does not work
Here is my problem:
I have created a listview which is populated on a spinner change from AsincTask with a simple adapter like this:
@Override
protected void onPostExecute(SimpleAdapter ...
0
votes
1answer
51 views
Dynamic change in the value of spinner
I have 2 Spinnery which holds some value (the same in the two spinners). How do to the value of 1 Spinner were not visible in 2 spinner? If you select a value of 1 spinnerze she is to be seen in the ...
0
votes
1answer
67 views
Android spinner calculation with variables
I have a problem that i can't figure out how to solve. My code is the following:
package com.app.BoomBase;
import android.app.Activity;
import android.app.LauncherActivity.ListItem;
import ...
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
79 views
Change Spinner background color without loosing default L&F
I'd like to change background color of Spinner (not items or dropdownlist).
If i set background android:background="@android:color/white" i lost default look&feel of spinner (dropdown arrow, ...
0
votes
2answers
61 views
Android spinner showing object reference instead of string
Ok so I am having a issue with my spinner. Its being populated with data pulled from a webservice. The issue im having is that when the spinner is not clicked instead of showing the string for the ...
0
votes
1answer
107 views
How to change item in a spinner in ActionBar programmatically
I have a spinner in my ActionBarSherlock with 5 elements in it. By clicking one of the two buttons at the bottom of the screen (see picture) I want to change the item id of the spinner.
This is my ...
0
votes
0answers
14 views
troubles with Spinners
Good Morning i have a trouble From a Item in the Spinner, when i select it there is a Text View changing on the back.But it doesnt work!
this is my code:
public void onCreate(Bundle ...
1
vote
0answers
188 views
android custom spinner with dropdown option showing below spinner
I want to create a custom spinner,where the dropdown option will be shown below the spinner itself like the dropdown listbox in webservice.But i could only able to change the color and textcolor of ...
0
votes
2answers
331 views
Android: How to make selected spinner item to TextView?
I am trying to get the selected item from the spinner to be displayed DIRECTLY after it is selected. Imagine if this is like a quiz game. If you select one of the wrong ones, a TOAST will appear(which ...
0
votes
0answers
67 views
Android - Set drawable / layout of an extended Spinner
I'd like to extend a Spinner in Android to be able do disable some of the possible items in the list the spinner offers. I achieved this. But now the layout of the spinner is quite ugly. See ...
0
votes
1answer
112 views
HoloEverywhere dropdown items too big
I'm using HoloEverywhere for my Android application and the dropdown items are rather odd. They are way bigger than they are in native Android 4+ and bigger than necessary. This for example is how it ...
0
votes
0answers
31 views
Create new Spinner Adapter or improve existing Adapter?
I have problem with Spinner. I have created Adapter for one of my classes that extends ArrayAdapter. This adapter is for ListView.
Should I create another adapter for Spinner that extends BaseAdapter ...







