Tagged Questions
0
votes
2answers
25 views
How to make a spinner populate another spinner?
How would you go about making a spinner populate another spinner based on the first spinners selection?
So for example:
Spinner1 items are vegetarian or meat eater.
<string-array ...
0
votes
1answer
30 views
Getting spinner to show what they picked
My spinner works but I want to know what user has selected before clicking on the confirm button that I have set up. I was guessing something like setting the spinners to a variable so I can use them ...
0
votes
1answer
52 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
34 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
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
56 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
0answers
67 views
how to disable an item in the spinner Android
I want to disable <item>Repeat 5 times</item> when user selects <item>Repeat 4 time </item> how can i implement this ??
ArrayAdapter<CharSequence> adapter = ...
0
votes
1answer
93 views
Android - populating a spinner from a database function returning an array dynamically
I have a database filled with certain values and I wondered how i can put them in a spinner. I have a class called SetSql which holds all of my database functions, and in it a function called ...
0
votes
0answers
45 views
How do i replace the “ ” in an array with a letter from a-z (in the spinner items)
A user inputs a word...The word is placed in an array-string when the OK button is pressed...I..if the user inputs a word with a blank letter(corresponded by a space) example "h" "_" "l" "l" "o" (the ...
0
votes
1answer
132 views
Dynamically Changes Spinner String Array Resources
I'm having problems using spinner and string array.
I want to changes spinner items based on conditions(modes in my terms)
below is the codes i have done :
public class MainActivity extends ...
0
votes
1answer
1k views
How do I populate an Android spinner using a JSON web service?
How do I parse a JSON file like the one below containing school names and IDs and use the values in the "Name" field to populate the spinner lables?
I want the spinner to output the selected ...
0
votes
1answer
71 views
Using Item's name on an “if” in Android
I have a Spinner on an ActivityA:
cmbOpciones1 = (Spinner)findViewById(R.id.CmbOpciones1);
ArrayAdapter<?> adapter1 = ArrayAdapter.createFromResource( this, R.array.exporal , ...
0
votes
0answers
88 views
eclipse android: Button store only 1 value that can change
I'm creating an application with several spinner options to select things.
And now I want to create a new spinner so you can select your intent.
The problem is not the spinner, but to make the ...
0
votes
2answers
239 views
Passing an array item to another activity, from a spinner
Hi guys please help me here, I have a spinner that looks like this:
On the Activity:
final Spinner cmbOpciones = (Spinner)findViewById(R.id.CmbOpciones);
spinner_adapter = ...
-1
votes
1answer
68 views
How do you make a spinner pick from different lists?
As of rite now all I have is one spinner with three options, what i would like to do is if option one is selected then a random from list1 is selected, option 2 picks from list 2 and so on, I have a ...
0
votes
0answers
197 views
fill Spinner from String-Array (multidimensional)
I have a String-Array in the following form:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string-array name="country_array">
<item>
...
0
votes
1answer
102 views
Spinner force closing
Im trying to test the functionality of my spinner with a toast. I am having trouble because instead of toasting ShowTime, it force closes. my logcat is posted below the code. If anybody can help me ...
1
vote
2answers
402 views
Spinner exeption at on click to select
i have a spinner, its working fine when i insert values by spinner in data base, but when i fetch values from database and pass index to spinner it works too but when i click on it to change the value ...
0
votes
1answer
127 views
Dynamic spinner options does not open
I have within a TabActivity a Spinner that will be generated dynamically. Just to test, I did so manually:
Spinner sp_departure = (Spinner) findViewById(R.id.spinner_departure);
// This array will ...
0
votes
2answers
504 views
How to use the selected item of a spinner in an if statement (Android in eclipse)
Hi I have a spinner (spinner5) and whenever the user selects an item that says "age" I want the textview to change to 21. I have tried the following but it doesnt work. I can do this by using if ...
0
votes
2answers
674 views
Spinner value into a ListPreference
I'm trying to save a Spinner value into a ListPreference. I can't get it to work. I've tried to get this working for a long time now. Does anyone have a solution or can anyone point me in the right ...
0
votes
1answer
373 views
Populating A Spinner From Another Spinner Depending on Condition
What i need to do is if a certain item from spinner 1 is selected it needs to display a certain array in spinner 01
e.g
if spinner one selected item is Red spinner 01 needs to display level_array as ...
0
votes
1answer
2k views
Android array cannot be resolved or is not a field
I have the following code segments in my program:
ArrayAdapter<CharSequence> dataAdapter = ArrayAdapter.createFromResource(
this, R.array.datatypes, ...
0
votes
1answer
704 views
ViewPager + spinners + array cause app to crash
My app has two separate views that were originally separated using TabHost. I decided to switch to ViewPager to make the app more visually appealing.
But now the app crashes as soon as it starts. Now ...
0
votes
1answer
164 views
Android Preference menu(change array id when clicked)
i got 2 classes. A class with a spinner in it and a preference class. The spinner is set up with a array from strings.xml` s1 = (Spinner) findViewById(R.id.spinner1);
ArrayAdapter adapter1 = ...
1
vote
1answer
902 views
ArrayAdapter and Spinner getting null pointer exception
I am trying to add items to my spinner but i am getting
12-06 15:44:13.828: E/AndroidRuntime(763): FATAL EXCEPTION: main
12-06 15:44:13.828: E/AndroidRuntime(763): ...
0
votes
1answer
3k views
how to list files in a directory?
im new to android development so please forgive me if this is an easy thing to do.
i want to get all the files in a directory on the sd card and display them in a spinner, but i just cant work out ...
0
votes
1answer
185 views
How to fill a Spinner from an array of arrays
This is the error that i'm receiving.
Null Pointer Exception
11-06 19:03:34.050: WARN/System.err(5342): at RetrievingAmazonXMLDataActivity.onCreate(RetrievingAmazonXMLDataActivity.java:88)
...
0
votes
1answer
196 views
how to put an array into a spinner in an alert box?
I have an array and I was wondering how I could get it into a spinner that is also in a alert dialog? I know this is a 2 part question but if anyone can help me with one of them it will be much ...
0
votes
1answer
324 views
Populating a dependent spinner from an independent spinner
I have a Spinner object that contains an array of strings populated with the 50 states in the United States.
I also have some more arrays that contain lists of cities for the different states. What I ...
1
vote
2answers
844 views
Android String: Find Number and Create New String
I have a spinner that is populated with a list of strings such as "Item 1: 1.5 - 2.5" and I would like to somehow extract the number portions (1.5 - 2.5) from that string when it is selected from the ...
-1
votes
2answers
3k views
How to fill a spinner with content?
guys I'm very new to the Java word, but i share part of the knowledge because of my c# background, anyways i started developing for android and I'm running into a few snags like the following.
I ...
0
votes
1answer
2k views
Android array list from database
I wanna create an array of cities that are stored in the database
Cities Table
CREATE TABLE cities (_id INTEGER PRIMARY KEY AUTOINCREMENT, name TEXT);
Querying for City List
// City List
public ...
0
votes
0answers
508 views
Android: Update map from Spinner - Can This Be Done?
I am working on a Taxi application which locates nearby taxi companies. At present, however, I wish to use a set of pre-defined values for the list of taxi companies as the system is in the early ...
0
votes
3answers
112 views
i've got some problems with my spinner
So i'm starting a application and the first thing to do is make a description of a city when the city is selected. I can show the description but it make the description of all the cities on the same ...
1
vote
1answer
3k views
How can I display an array of Strings in a Spinner with Spinner.setAdapter?
I have an xml layout file which contains a few widgets including a Spinner
I want to display a list of strings in the spinner, the list is generated at runtime as a result of a function so it can not ...
2
votes
2answers
1k views
How do you retrieve the array adapter currently set for a spinner? Android OS, Droid
Looking to create a menu toggle that switches between two possible arrays for a spinner. For example, if the spinner is set to show array A, then when I press this menu button, I want the spinner to ...
19
votes
3answers
30k 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/
...
