Multiple spinners using one list with different values Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) The Ask Question Wizard is Live! Data science time! April 2019 and salary with experience Should we burninate the [wrap] tag?Differences between HashMap and Hashtable?Is Java “pass-by-reference” or “pass-by-value”?Sort a Map<Key, Value> by valuesWhat is the difference between public, protected, package-private and private in Java?Difference between StringBuilder and StringBufferHow to get an enum value from a string value in Java?How do I determine whether an array contains a particular value in Java?What is the difference between “px”, “dip”, “dp” and “sp”?What is the difference between match_parent and fill_parent?What's the difference between @Component, @Repository & @Service annotations in Spring?
Why one of virtual NICs called bond0?
Is above average number of years spent on PhD considered a red flag in future academia or industry positions?
What would be the ideal power source for a cybernetic eye?
Why are there no cargo aircraft with "flying wing" design?
G-Code for resetting to 100% speed
When -s is used with third person singular. What's its use in this context?
Why is "Consequences inflicted." not a sentence?
What are the pros and cons of Aerospike nosecones?
Right-skewed distribution with mean equals to mode?
Why was the term "discrete" used in discrete logarithm?
How can I fade player when goes inside or outside of the area?
How to bypass password on Windows XP account?
Is 1 ppb equal to 1 μg/kg?
Does surprise arrest existing movement?
Can a non-EU citizen traveling with me come with me through the EU passport line?
Does accepting a pardon have any bearing on trying that person for the same crime in a sovereign jurisdiction?
If a contract sometimes uses the wrong name, is it still valid?
Java 8 stream max() function argument type Comparator vs Comparable
Check which numbers satisfy the condition [A*B*C = A! + B! + C!]
How to deal with a team lead who never gives me credit?
Doubts about chords
Is there a service that would inform me whenever a new direct route is scheduled from a given airport?
How to find all the available tools in macOS terminal?
Do I really need recursive chmod to restrict access to a folder?
Multiple spinners using one list with different values
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
The Ask Question Wizard is Live!
Data science time! April 2019 and salary with experience
Should we burninate the [wrap] tag?Differences between HashMap and Hashtable?Is Java “pass-by-reference” or “pass-by-value”?Sort a Map<Key, Value> by valuesWhat is the difference between public, protected, package-private and private in Java?Difference between StringBuilder and StringBufferHow to get an enum value from a string value in Java?How do I determine whether an array contains a particular value in Java?What is the difference between “px”, “dip”, “dp” and “sp”?What is the difference between match_parent and fill_parent?What's the difference between @Component, @Repository & @Service annotations in Spring?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I have the following code, which adds spinners based on a loop (my loop is different in my real version, but simplified here since the outcome is the same).
for(int i = 0; i < 2; i++
Spinner spinner = new Spinner(this);
spinner.setId(result.getInt(0));
Cursor result2 = databaseHelper.retrieveData(DatabaseHelper.LISTTABLE,"`Select list`",result.getString(8),null);
listDynamic.clear();
listDynamic.add("");
for(int j = 0; j < result2.getCount(); j++)
result2.moveToNext();
listDynamic.add(result2.getString(7));
ArrayAdapter arrayAdapter = new ArrayAdapter<>(this, android.R.layout.simple_spinner_item, listDynamic);
spinner.setAdapter(arrayAdapter);
result2.close();
listSpinners.add(spinner);
rlParent.addView(spinner);
So what works: The spinners work as expected.
The code produces this result: The spinners will only use the last iteration of listDynamic and arrayAdapter. Basically resulting in the following:
Spinner 1
- Q
- W
- E
Spinner 2
- Q
- W
- E
The result that should happen (in my mind) is that there should be two different lists shown in each spinner. Similar to this:
Spinner 1
- A
- B
- C
Spinner 2
- Q
- W
- E
I suspect there is a thing about ArrayAdapters that I am missing?
java android arraylist spinner
add a comment |
I have the following code, which adds spinners based on a loop (my loop is different in my real version, but simplified here since the outcome is the same).
for(int i = 0; i < 2; i++
Spinner spinner = new Spinner(this);
spinner.setId(result.getInt(0));
Cursor result2 = databaseHelper.retrieveData(DatabaseHelper.LISTTABLE,"`Select list`",result.getString(8),null);
listDynamic.clear();
listDynamic.add("");
for(int j = 0; j < result2.getCount(); j++)
result2.moveToNext();
listDynamic.add(result2.getString(7));
ArrayAdapter arrayAdapter = new ArrayAdapter<>(this, android.R.layout.simple_spinner_item, listDynamic);
spinner.setAdapter(arrayAdapter);
result2.close();
listSpinners.add(spinner);
rlParent.addView(spinner);
So what works: The spinners work as expected.
The code produces this result: The spinners will only use the last iteration of listDynamic and arrayAdapter. Basically resulting in the following:
Spinner 1
- Q
- W
- E
Spinner 2
- Q
- W
- E
The result that should happen (in my mind) is that there should be two different lists shown in each spinner. Similar to this:
Spinner 1
- A
- B
- C
Spinner 2
- Q
- W
- E
I suspect there is a thing about ArrayAdapters that I am missing?
java android arraylist spinner
add a comment |
I have the following code, which adds spinners based on a loop (my loop is different in my real version, but simplified here since the outcome is the same).
for(int i = 0; i < 2; i++
Spinner spinner = new Spinner(this);
spinner.setId(result.getInt(0));
Cursor result2 = databaseHelper.retrieveData(DatabaseHelper.LISTTABLE,"`Select list`",result.getString(8),null);
listDynamic.clear();
listDynamic.add("");
for(int j = 0; j < result2.getCount(); j++)
result2.moveToNext();
listDynamic.add(result2.getString(7));
ArrayAdapter arrayAdapter = new ArrayAdapter<>(this, android.R.layout.simple_spinner_item, listDynamic);
spinner.setAdapter(arrayAdapter);
result2.close();
listSpinners.add(spinner);
rlParent.addView(spinner);
So what works: The spinners work as expected.
The code produces this result: The spinners will only use the last iteration of listDynamic and arrayAdapter. Basically resulting in the following:
Spinner 1
- Q
- W
- E
Spinner 2
- Q
- W
- E
The result that should happen (in my mind) is that there should be two different lists shown in each spinner. Similar to this:
Spinner 1
- A
- B
- C
Spinner 2
- Q
- W
- E
I suspect there is a thing about ArrayAdapters that I am missing?
java android arraylist spinner
I have the following code, which adds spinners based on a loop (my loop is different in my real version, but simplified here since the outcome is the same).
for(int i = 0; i < 2; i++
Spinner spinner = new Spinner(this);
spinner.setId(result.getInt(0));
Cursor result2 = databaseHelper.retrieveData(DatabaseHelper.LISTTABLE,"`Select list`",result.getString(8),null);
listDynamic.clear();
listDynamic.add("");
for(int j = 0; j < result2.getCount(); j++)
result2.moveToNext();
listDynamic.add(result2.getString(7));
ArrayAdapter arrayAdapter = new ArrayAdapter<>(this, android.R.layout.simple_spinner_item, listDynamic);
spinner.setAdapter(arrayAdapter);
result2.close();
listSpinners.add(spinner);
rlParent.addView(spinner);
So what works: The spinners work as expected.
The code produces this result: The spinners will only use the last iteration of listDynamic and arrayAdapter. Basically resulting in the following:
Spinner 1
- Q
- W
- E
Spinner 2
- Q
- W
- E
The result that should happen (in my mind) is that there should be two different lists shown in each spinner. Similar to this:
Spinner 1
- A
- B
- C
Spinner 2
- Q
- W
- E
I suspect there is a thing about ArrayAdapters that I am missing?
java android arraylist spinner
java android arraylist spinner
asked Mar 22 at 8:23
Mr. NielzomMr. Nielzom
85
85
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You are using same list for both spinners that why items are same .
SOlutions 1: declare listDynamic locally .
listDynamic.clear(); -> List listDynamic=new Arraylist();
Solution 2: use different list object for different spinners listDynamic1,listDynamic2 ...
Hope this will help
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55295529%2fmultiple-spinners-using-one-list-with-different-values%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You are using same list for both spinners that why items are same .
SOlutions 1: declare listDynamic locally .
listDynamic.clear(); -> List listDynamic=new Arraylist();
Solution 2: use different list object for different spinners listDynamic1,listDynamic2 ...
Hope this will help
add a comment |
You are using same list for both spinners that why items are same .
SOlutions 1: declare listDynamic locally .
listDynamic.clear(); -> List listDynamic=new Arraylist();
Solution 2: use different list object for different spinners listDynamic1,listDynamic2 ...
Hope this will help
add a comment |
You are using same list for both spinners that why items are same .
SOlutions 1: declare listDynamic locally .
listDynamic.clear(); -> List listDynamic=new Arraylist();
Solution 2: use different list object for different spinners listDynamic1,listDynamic2 ...
Hope this will help
You are using same list for both spinners that why items are same .
SOlutions 1: declare listDynamic locally .
listDynamic.clear(); -> List listDynamic=new Arraylist();
Solution 2: use different list object for different spinners listDynamic1,listDynamic2 ...
Hope this will help
answered Mar 22 at 11:30
Prinkal KumarPrinkal Kumar
1,4582513
1,4582513
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55295529%2fmultiple-spinners-using-one-list-with-different-values%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown