0
votes
0answers
196 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
2answers
98 views

How to retrieve String from a spinner using array?

I added arrays on the string.xml, and these strings are visible in my Spinner when I run the app. The problem is that the Toast does not display the value of the gender variable. I made a separate ...
-3
votes
2answers
934 views

How to populate Spinner from a Array string[] [closed]

How to populate a Spinner from Array string[] Example: String[] items = new String[] {"uno", "due", "tre"}; sp = (Spinner) findViewById(R.id.spinner); sp <<--- ADD items Array thanks marco ...
0
votes
1answer
288 views

Android Spinner Array

I have created a Spinner and have populated it with values for my app which will work out alcohol units in drinks. The spinner hold the different type of measures of drinks Pint, Half Pint, Bottle ...
0
votes
3answers
417 views

How to change the array source of a spinner (Android in eclipse)

I tried to ask this question before but I guess I didnt explain myself properly, so I will try again. I have a spinner (spinner5), I have created two string arrays (name_array and type_array) which ...
0
votes
1answer
564 views

How to change the entry of a spinner in code (Android)

Hi I have a spinner for which I would like to change its entry. I have created an array in the values folder. I know that I can edit the entry of the spinner by right clicking on it. But I want to ...