Tagged Questions
0
votes
1answer
10 views
How set item id and item value to Spinner?
I got a data base with table 'cars'. In this table two columns id and name. im loading data from database and set to spinner. But i setting up only name column to spinner. Im trying put there id too. ...
-5
votes
0answers
23 views
Android listview and spinner how to do?
im doing an APP for Android with a list of Series of TV and who there's a Listview.When i click for example in "How i meet your mother" the item goes to an other Activity who see the Synopsis and a ...
0
votes
2answers
46 views
Spinner Android onItemSelected just select the last item of the list
I populate a spinner from this JSON :
[
{
"vhc_name": "",
"vhc_login": "",
"vhc_password": ""
},
{
"vhc_name": "Tél de Pan-K",
"vhc_login": ...
-2
votes
0answers
23 views
Pick up value of a spinner and search a database [closed]
I'm in the final stage of my application, I just need a method to catch a spinner and do a search on my database. Detail spinner populated with this ArrayAdapter in my MainActivity.
Another grab ...
0
votes
2answers
28 views
Android Spinner to give text answer displayed
I currently have a spinner giving the same result as the spinner selection. For example if I selected the word "Blue" from the spinner drop down the word "Blue" would be displayed in a text box below ...
0
votes
0answers
19 views
Android - how to invoke onNavigationItemSelected when spinner item is re-selected
I am using the spinner in the action bar for navigation. The problem is, the onNavigationItemSelected is not called when the selected item is the same as the previously selected one.
I have looked at ...
0
votes
2answers
23 views
How to put a Spinner beside a RadioButton
I have this layout:
(since my reputation is not yet 10 I sincerely ask you to view this image link)
http://tinypic.com/r/2q9f80z/5
I want to put a Spinner beside the last RadioButton as you can see ...
0
votes
3answers
44 views
Android Spinner dynmically change items
I want to use a Spinner in my App. The context (items) of the Spinner are depending on the user preferences done in the Settings of the App.
I created the Spinner with no items. After loading the App ...
0
votes
3answers
38 views
setOnItemSelectedListener of Spinner does not call
I used setOnItemSelectedListener to specify which item is selected in a spinner, but i think it is not called. it should print "It works" when the program runs.
XML code:
<Spinner
...
0
votes
4answers
41 views
Android Spinners Item Selection
I need a sample logic code...
I have spinner in which I have 3 items ----->Biscuits, Chips, Chocolates,
My Main.xml consists of only only a spinner and search button.
If i select chips from the ...
0
votes
0answers
26 views
Spinner How to set an unique style in diferent versions?
I have an app which works in android 2.2.x or superior , in 2.2.x the spinner is look like this (the spinners are inside in the red box):
A1 .- Spinners in the beginning
A2 .- Spinner when I select ...
-1
votes
2answers
31 views
how to stop a spinner from automatically selecting an option?
i have a spinner in an app im doing, and when it goes to OnItemSelcted it automatically selects the first option, how do i stop that in a simple way?
spinner2.setOnItemSelectedListener(new ...
0
votes
1answer
23 views
How to populate a spinner Android from a php page?
I have to populate a spinner from this php page :
http://sce.jelocalise.fr/mobile/ajax/getdevices.php?email=info@mediacom-i.fr&password=thedevil1
I've read lots of tutorials about Spinners and the ...
0
votes
1answer
28 views
Getting string from spinner
I'd like to get the string that the user select from a spinner menu. It should get the string after the user select one of them and saved that string in a new variable.
I had such a code that the new ...
0
votes
1answer
36 views
Providing Option to change Themes Using Spinners
I am very new to java and android programming and hence, my understanding is not very solid and hence, I would be much obliged if am provided with some assistance here.
I want to provide an option to ...
1
vote
1answer
47 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.
...
0
votes
2answers
56 views
How to make spinner in dialog mode?
I have button in my application and when I click on this button, it opens a spinner, but spinner is in dropdown mode and I need to make it in dialog mode. For API 11 and higher, there is a simple code ...
0
votes
1answer
34 views
Spinner onItemSelected keeping called over and over again
Well im new in Android programming and i felt a bit lost with the spinner selector...
I found some questions relating the same but none of them fits my purpose:
objectSpinner = (Spinner) ...
0
votes
1answer
79 views
How to center spinner menu programmatically?
I have activity in which I create spinner programmatically, spinner is opened by clicking on button, but each time I click on button spinner popup menu is in corner of the screen and not in middle and ...
0
votes
0answers
32 views
Putting dynamically generated spinners into GridView - how to achieve it?
Spinners in my case are generated dynamically:
for (int i = 0; i < spinnerCount; i++) {
spinner = new Spinner(getApplicationContext());
spinner.setId(i);
...
0
votes
1answer
50 views
using spinner in android development
I'm new to android development, I have some experiences on C# windows programming, but also very little. I'm working on an android application which uses spinners. So far, I found a tutorial which ...
0
votes
1answer
48 views
Android how to assign a spinner position an integer value
Ok, I have a spinner that is populated with strings, how can I use the array to assign a value to an integer?
for instance spinner has
"some value
"another value" etc.
When 1 is selected how can ...
0
votes
0answers
32 views
Own design to Spinner
i want to have a drop_down_item activity more smaller than activity as on a picture, how to make it? How to make own design for it?
I try to make design to spinner, i read How to change layout of ...
0
votes
1answer
32 views
Sending collective data from a Spinner to a different Activity
I have an activity with several spinners which shows varying products. At the moment, my spinners display a toast message displaying the item that was selected from the list. However, I would like to ...
0
votes
1answer
33 views
android spinner for list and “All” option
I have a android spinner that works like a filter for product listview. The spinner adapter has the list of Brand class objects. The listview then shows only the products with selected brand. Now I ...
0
votes
1answer
57 views
Android Storing Drawable In Array
I'm currently trying to access and use an image in place of text in a Spinner I'm using.
The below code works, if I were to use text specifically instead of drawables.
I previously referenced this ...
0
votes
1answer
42 views
Reading values of dynamically generated spinners - how to do this?
In my layout there is a number of spinners generated and added programmatically this way:
for (int i = 0; i < spinnerCount; i++) {
spinner = new Spinner(this);
...
0
votes
1answer
75 views
spinner inside an alertdialog.builder won't display any item
i am trying to make an alertdialog.builder with a spinner inside it. the spinner item is originally populated from the database. here is part of my code:
update.setOnClickListener(new ...
0
votes
1answer
23 views
Actionbar navigation list not cancellable
There is something weird about actionbar's navigation list.
I use Sherlock's actionbar, but the problem is also in the native ics actionbar.
When using the app, and clicking on the actionbar's ...
0
votes
3answers
36 views
How to reload a spinner in Android?
Can anybody tell me the code to reload a Spinner?
I have created a small app where I can add some items and delete unwanted items. The items added will be showed in a spinner. Once I select an item ...
0
votes
2answers
55 views
custom spinner in android like google maps
I need a custom spinner like how Google map application in ICS looks, whenever a spinner is clicked a dropdown will come, spinners have the capacity to take listview (correct me if i m wrong). But how ...
-1
votes
0answers
36 views
Clicking on spinner leaves low profile mode, showing back and home button again in Android
Using Android 4.2.2 on my Nexus 7, I'm wondering if there is a way to stay in low profile mode when clicking on a spinner.
In the following example I simply added a Spinner and a Button to a ...
0
votes
0answers
58 views
How to put a hashmap (key, value) data into a spinner?
im a bit noob on android, i want to create a spinner with company names, and i want to create a hashmap because i have an ID for each company Name, here is my code:
JSONObject mainJson = new ...
0
votes
1answer
29 views
Multiple spinners in an activity - can it be refactored to make it generated dynamically?
I need to put multiple spinners into my activity. Number of them would be defined dynamically, it would be 2-7 items.
At the moment I have something like:
-- clip:
Spinner spinnerOne = (Spinner) ...
0
votes
0answers
30 views
Android: spinner, assign each position in array a data variable
I'm not sure if I've gone about this in the correct way.
I have a spinner set to different String options, populated by a string array in an xml layout file.
The strings used are merely aesthetic, ...
0
votes
2answers
50 views
Set selected spinner item based on a name, not a position in Android
I have three spinners in an activity where I can edit information that the user has already entered into a database. I have been able to set the text of a textfield by querying my SQLite database to ...
0
votes
1answer
45 views
Can't fetch data from sqlite to spinner in alert dialog
I hope somebody can help me find out why the following code does not work with me. I have a method to fetch all names from database table, and I use List to get them. this is my code to fetch them
...
0
votes
0answers
17 views
Using Spinner to get data from SQLLIte DB and add it to textviews in a LinearLayout
I am searching for a definitive answer for this but this is my first time using Spinners as I am pretty new to Android and so following one of the tutorials and wrote the below code. Note, it is not ...
0
votes
1answer
39 views
Custom row in Spinner
I just need that items in a Spinner rows wraps when their length is large.
So I did this:
item.xml
<TextView
android:id="@+id/tvAddr"
android:layout_width="fill_parent"
...
0
votes
2answers
46 views
Start new Activity from spinner
I am trying to start a new activity when I select an option from my spinner but whenever I select the option that starts a new activity the app crashes. I am starting the new activity with an intent ...
0
votes
1answer
51 views
The method openFragmentTransaction() is undefined for the type new ActionBar.OnNavigationListener(){}
When I'm referring to Android Developers link to make a dropdown list, I got an error in Eclipse:
The method openFragmentTransaction() is undefined for the type new ActionBar.OnNavigationListener(){}
...
0
votes
3answers
92 views
Refreshing ListView row inside adapter with spinner in it
I have a custom adapter extended from a base one, and I got a spinner inside each row (something related to quantity for each product -> item from listview).
When user selects a different value of the ...
0
votes
1answer
27 views
BadTokenException error fixed for Spinner but now TextViews not showing up in layout. How can I fix both problems?
I have a dialog with a spinner.
AlertDialog.Builder customDialog = new AlertDialog.Builder(this);
LayoutInflater layoutInflater = (LayoutInflater) getApplicationContext()
...
0
votes
1answer
26 views
Search data from a csv file and put it in a spinner
I'm new at android programming and I need some help..
In my main class I have 2 spinners. One for countries and one for cities. In the first spinner, the user can choose a country. When a country is ...
0
votes
3answers
32 views
How to change which layout is showing
I am making an app where there is a spinner where you can choose 1 of 4 options. i want it so that if you click option a an image a layout is drawn below and if you pick option b a different layout is ...
0
votes
3answers
100 views
how to get spinner value in array list
I have this code in which I have a spinner with country names in it.I have declared these names in strings.xml file.Now,what I want is that when user selects a country the value is sent to arraylist ...
1
vote
1answer
117 views
Spinner in action bar with only icon but not the selected option
I am working on a app with action bar for navigation. Now I am trying to add a Spinner to the ActionBar.
I am able to get my custom icon on the ActionBar. But when I add entries into the spinner, the ...
0
votes
1answer
167 views
Android - set focus on EditText after Spinner selection
I have the following items displayed on the screen:
EditText Forename
Spinner gender selection (Male | Female)
EditText Email
When the application is first launched, I want the focus to be set on ...
0
votes
1answer
16 views
If two items are selected in 2 spinners, a image has to be displayed form drawable
Here 2 spinners are added . If i select particular item1 and item2 , a particular image has to be displayed . for example , if "Gujarat" and "Gandhinagr" are selected an image abc.png has to be ...
1
vote
1answer
72 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 ...




