0
votes
1answer
27 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
49 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
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
0answers
62 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
67 views

ArrayAdapter + Spinner

I'm working with spinners plus the arrayadapters that come with them but I just can't get my head around what setDropDownViewResource() does. How is it related to the layout you can pass when ...
0
votes
2answers
82 views

Android spinner crashing when clicked on

I have a spinner on my page, which is populated using an arrayAdapter. When i launch my app everything is ok, but the moment i click on the spinner, the app crashes and logcat gives me no reference to ...
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
53 views

Spinner with several elements for item

I need to create a spinner in which each item has several elements (values). example: 1 value 2 value (1) AO (2) Aosta (1) MI (2) Milan (1) TO (2) Turin Etc. ..... AO Aosta and is a ...
0
votes
1answer
52 views

Spinner cannot be used in conditional statements in Android

What seem to be the problem... My program cannot enter the switch statements. I assigned the position to unita and when i use it in the switch statement, it doesn't respond. But when i tried putting a ...
1
vote
2answers
169 views

Resources NotFoundException for Spinner Android

I have an activity that has a Button. When the Button is clicked it is supposed to open a simple Popup Window that contains a TextView and a Spinner. I have the Popup Window opening up fine. My ...
-1
votes
3answers
110 views

Android spinner item id related prob

I have an ArrayList of custom object. This custom object contains zoneCode(Integer) and zoneName(String), I want to set this data in an Spinner so that the zoneName comes in the list and ...
0
votes
2answers
117 views

Setting the drop down list of a spinner with an int[] array

In my app I have a spinner in which the user selects a number. I have tried the following, and it works, but it requires a string-array in the values.XML file,which is impractical for me as I have ...
0
votes
1answer
164 views

ArrayAdapter with Spinner returning android.content.res.Resources$NotFoundException

I trying to populate a Spinner with a List of Strings. He compiles and run in android, but when I enter a touch in the Spinner, the program stops and return this error: ...
1
vote
1answer
165 views

Spinner with integer array

I'm trying to create a Spinner with integers values (1, 5, 10, etc.) I already have a Spinner with Strings and everything is working fine. private static final String[] daysOfWeek = {"Monday", ...
-1
votes
1answer
107 views

Error in setting custom view to ArrayAdapter<String> for spinner

Below is my ArrayAdapter that I want to inflate view to fit my need of dropdown spinner. ArrayAdapter<String> arrShirtType = new ArrayAdapter<String> (this, ...
0
votes
2answers
431 views

Attempting to customize spinner with adapter

I want to do nothing more than change the font Typeface and size of my spinner text. I have made some initial attempts. Nothing is crashing, but my spinner is blank. (I also have yet to implement ...
1
vote
0answers
155 views

Spinner setSelection() not working

I am trying to read my spinner state back in from the sqlite database and then set it if it matches. I have an array list of array adapters. I have used debug and ran through the code and everything ...
1
vote
1answer
62 views

error occur when i select an item again in 1st spinner then the related data do not parsed in 2nd spinner means it does'nt refresh

I have 3 spinners that use data parsed from a web service. When I select an item from 1st spinner then the 2nd spinner will present related data that was parsed. But when I select an item again in ...
0
votes
2answers
203 views

Populating a spinner with specific entries from an array

I am working on an application for Android. For this I am making an Activity in which you select your country and then a spot in that country. I have one spinner that contains a list of all available ...
0
votes
0answers
276 views

Invisible Android Spinner Text in Spinner Populated by SQLite and SimpleCursorAdapter

I have two Spinners within two separate Tab Fragments. The only difference is that one is populated by an ArrayAdapter and a R.array.fillInNameOfArray and the second one is populated by a ...
0
votes
2answers
744 views

Spinner: NullPointerException at ArrayAdapter.createViewFromResource

I create some Spinners by code like this : if (dyn_list_id[i]==null){ String[] form_ids = db.getEntireColumn(list_table_name[i], "form_label_id"); String[] spinnerArray = new ...
0
votes
2answers
846 views

Get item value in arrayadapter

I want to get the value of the selected item in the spinner. I am using array adapter. <string-array name="my_list"> <item value="">---Select the value from the ...
1
vote
2answers
124 views

Spinner downdrop with strange text

I'm developing an Android application with a spinner. I have this problem: This is spinner array adapter code: public class OrderArticlesAdaper extends ArrayAdapter<Article> { private ...
2
votes
1answer
366 views

How to get the value of an item from database and set it as the spinner value

I have a database and the database populates a listview. when i long press a list item from the listview i get a context menu where i have the option to edit. When the edit option is clicked i open an ...
7
votes
3answers
3k views

Difference between android.R.layout.simple_spinner_dropdown_item and android.R.layout.simple_spinner_item

Here's a sample code of using spinner in android : Spinner spinner = (Spinner) findViewById(R.id.spinner); ArrayAdapter<CharSequence> adapter = ArrayAdapter.createFromResource(this, ...
0
votes
1answer
99 views

android : ignore conditional array adaptor for spinner

I am new to Android. I tried to form a conditional adaptor (depends on a String variable) for different string arrays. TextView textPrompt; textPrompt = ...
2
votes
1answer
2k views

Spinner with custom ArrayAdapter for objects not displaying selected item

I have a custom ArrayAdapter to represent objects on a spinner control, I can load my items list and show it for selection, but when the actual selection happens the spinner shows nothing. Activity ...
0
votes
1answer
661 views

Spinner is not displaying items list in Android using AsyncTask

I've an activity, in which I am using Spinner to populate it from WebService call, with the help of AsyncTask. My problem is, in logcat, I can see all the ArrayAdapter<String> items, but when I ...
0
votes
2answers
241 views

Custom Android Spinner doesn't show text completely

I have a created a custom ArrayAdapter to hold a tuple. I use one of the items in the tuple as the text to be displayed on a spinner which I have placed on a page. Here is the code for my ...
0
votes
1answer
699 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 ...
1
vote
2answers
4k views

Custom ArrayAdapter and Spinner. No item selection

Android 1.6 There's a collection of such objects public class MyItem { public String name = ""; public String brief = ""; public int availiableweight = 0; public Node xmlpoint = null; ...
0
votes
4answers
514 views

Returning a String from ArrayAdapter

I have created a Spinner and ArrayAdapter as follows: Spinner spinner1 = (Spinner) findViewById(R.id.spinner1); final ArrayAdapter<CharSequence> adapter1 = ArrayAdapter.createFromResource( ...
0
votes
1answer
999 views

Populating Spinner using string values returned by SOAP web service

I am working on a Android code that returns me String values that I store in a String array.I want to use this String array to populate one of my Spinners. My main intention is that depending on what ...
0
votes
1answer
634 views

Setting spinner content

I have followed quite a few question around here on how to set the content of a spinner, but none had worked for me, i'm still getting a error. this is the layout <?xml version="1.0" ...
0
votes
1answer
208 views

Android arrayadapter on spinner

I want to populate a spinner with some values from a List The list is populated with objects ArrayAdapter<PersonDetails> toStopAdapter = new ...
0
votes
1answer
2k views

Android spinner prompt not working [duplicate]

I have Spinners that I am using in my application. They are working fine with one exception. I have set prompts for each one, but they are not showing. I am setting ArrayAdapters to the Spinners ...
2
votes
1answer
693 views

populate city spinner after state spinner has been selected

This is my question: How do I have two spinners "State" and "City" but the city will be empty until the user selects a state first. I am building my spinners dynamically using json data and you will ...
1
vote
1answer
1k views

Android updating a spinner based on “Parent” spinner's selection - .notifyDataSetChange() not firing?

So, I have two spinners, let's call the first spinner Parent (account_type_spinner) and the second spinner Child (account_name_spinner). Please notice in the following code the ArrayAdapter ...
0
votes
3answers
324 views

How should I dynamically change a spinner's entries?

This question was not worded well enough to get the responses I wanted, so I am posting a new, almost completely different question.
-2
votes
1answer
299 views

My Android spinner works without an ArrayAdapter…why?

Will I come to the heaven or to the hell? As I had to populate 5 spinners, I tried very compact code. I didn“t understand why I should use a ArrayAdapter, so I simply dropped it out, in spite all ...
-1
votes
1answer
2k views

Android ArrayAdapter<String> Error

I need to create a spinner from a string. Until now I use an ArrayAdapter, but it's not working. This is my code ArrayList<String> aus=new ArrayList<String>(); ...
3
votes
3answers
12k views

Android Spinner databind using array list

I have a array list like this, private ArrayList<Locationss> Artist_Result = new ArrayList<Location>(); this Location class have two properties(id,location) I need to bind my arraylist ...
2
votes
1answer
2k views

How to add ArrayList<My class> in ArrayAdapter for spinner?

private ArrayAdapter spn_1; ArrayList<My Class> result; spn_1 = new ArrayAdapter(this, android.R.layout.simple_spinner_item, result); ...
0
votes
3answers
874 views

How do I change which String Array my Spinner is using?

I'm trying to change the contents of my two Spinners. So I've got my Spinners created: Spinner spinner01 = (Spinner) findViewById(R.id.Spinner01); Spinner spinner02 = (Spinner) ...
1
vote
2answers
760 views

Spinner items selection radio missing

When my items contains English and/or numeric signs, it shows the radio selection near the item, but when it doesn't contains any English and/or numeric signs (contains only Hebrew in my example) it ...
0
votes
1answer
369 views

How do I inflate a spinner from an array parsed with GSON

I'm new to the GSON library, I have a json data structure that looks like this. ...
1
vote
1answer
417 views

Updating a spinner when SQLite is updated

I have an application where a user can enter in a EditText field an artist's name and it will be added to the sqlite table. That works great, but I also have a spinner on the same activity/layout that ...
0
votes
1answer
2k views

Android: Spinner with changing ArrayAdapter - how to identify?

I want to have three Spinners with contents which depend on each other. E.g. Spinner1 displays {item1, item2} and Spinner2 either {item3, item4} or {item5, item6} depending on whether item1 or item2 ...
0
votes
2answers
1k views

android: How to populate a spinner with a string[] which is a list of installed packages?

final Intent mainIntent = new Intent(Intent.ACTION_MAIN, null); mainIntent.addCategory(Intent.CATEGORY_LAUNCHER); final List pkgAppsList = this.getPackageManager().queryIntentActivities( ...
1
vote
0answers
1k views

Android, using images in spinner

I am trying to show icons together with the text in a spinner. I have found some examples on how to subclass the ArrayAdapter to achieve that, for example ...

1 2