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;








0















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



  1. Q

  2. W

  3. E

Spinner 2



  1. Q

  2. W

  3. 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



  1. A

  2. B

  3. C

Spinner 2



  1. Q

  2. W

  3. E

I suspect there is a thing about ArrayAdapters that I am missing?










share|improve this question




























    0















    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



    1. Q

    2. W

    3. E

    Spinner 2



    1. Q

    2. W

    3. 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



    1. A

    2. B

    3. C

    Spinner 2



    1. Q

    2. W

    3. E

    I suspect there is a thing about ArrayAdapters that I am missing?










    share|improve this question
























      0












      0








      0








      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



      1. Q

      2. W

      3. E

      Spinner 2



      1. Q

      2. W

      3. 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



      1. A

      2. B

      3. C

      Spinner 2



      1. Q

      2. W

      3. E

      I suspect there is a thing about ArrayAdapters that I am missing?










      share|improve this question














      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



      1. Q

      2. W

      3. E

      Spinner 2



      1. Q

      2. W

      3. 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



      1. A

      2. B

      3. C

      Spinner 2



      1. Q

      2. W

      3. E

      I suspect there is a thing about ArrayAdapters that I am missing?







      java android arraylist spinner






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 22 at 8:23









      Mr. NielzomMr. Nielzom

      85




      85






















          1 Answer
          1






          active

          oldest

          votes


















          0














          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






          share|improve this answer























            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
            );



            );













            draft saved

            draft discarded


















            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









            0














            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






            share|improve this answer



























              0














              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






              share|improve this answer

























                0












                0








                0







                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






                share|improve this answer













                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







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 22 at 11:30









                Prinkal KumarPrinkal Kumar

                1,4582513




                1,4582513





























                    draft saved

                    draft discarded
















































                    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.




                    draft saved


                    draft discarded














                    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





















































                    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







                    Popular posts from this blog

                    Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

                    SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

                    은진 송씨 목차 역사 본관 분파 인물 조선 왕실과의 인척 관계 집성촌 항렬자 인구 같이 보기 각주 둘러보기 메뉴은진 송씨세종실록 149권, 지리지 충청도 공주목 은진현