Android: Create ArrayList from Spinner programmatically





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}







-2















I have a spinner, created in an XML file:



<Spinner
android:id="@+id/unitSpinner"
android:entries="@array/units" />


With its entries defined in array.xml



<string-array name="units">
<item>g</item>
<item>kg</item>
<item>ml</item>
<item>l</item>
<item>szt.</item>
<item>op.</item>
</string-array>


Now in my Java file I want to create an ArrayList<String> which contents after feeding it with Spinner's entries would be:



["g", "kg", "ml", "l", "szt.", "op."]


My Java code looks like this:



Spinner unit = (Spinner) findViewById(R.id.unitSpinner);
ArrayList<String> array = new ArrayList<>();
//pass information from unit to array


EDIT:



This question differs from many questions like Android : Fill Spinner From Java Code Programmatically as I don't want to fill Spinner with an Array, but the opposite way.










share|improve this question

























  • Could you please explain what you mean more clearly?

    – Elgirhath
    Nov 23 '18 at 13:04











  • Do you mean something like that Change String-Array in Strings.xml to ArrayList ?

    – user141080
    Nov 23 '18 at 13:05











  • @user141080 this question is helpful, but please check out my edited Java code: I would like to pass entries from my Spinner object to the ArrayList<String> object

    – Elgirhath
    Nov 23 '18 at 13:10






  • 1





    @koman900 take a look at this question stackoverflow.com/questions/32127374/…

    – Marina Budkovets
    Nov 23 '18 at 13:22






  • 1





    This doesn't really make sense. You already know exactly what those values are. What is the point of building an ArrayList from the Spinner values?

    – Mike M.
    Nov 23 '18 at 13:43


















-2















I have a spinner, created in an XML file:



<Spinner
android:id="@+id/unitSpinner"
android:entries="@array/units" />


With its entries defined in array.xml



<string-array name="units">
<item>g</item>
<item>kg</item>
<item>ml</item>
<item>l</item>
<item>szt.</item>
<item>op.</item>
</string-array>


Now in my Java file I want to create an ArrayList<String> which contents after feeding it with Spinner's entries would be:



["g", "kg", "ml", "l", "szt.", "op."]


My Java code looks like this:



Spinner unit = (Spinner) findViewById(R.id.unitSpinner);
ArrayList<String> array = new ArrayList<>();
//pass information from unit to array


EDIT:



This question differs from many questions like Android : Fill Spinner From Java Code Programmatically as I don't want to fill Spinner with an Array, but the opposite way.










share|improve this question

























  • Could you please explain what you mean more clearly?

    – Elgirhath
    Nov 23 '18 at 13:04











  • Do you mean something like that Change String-Array in Strings.xml to ArrayList ?

    – user141080
    Nov 23 '18 at 13:05











  • @user141080 this question is helpful, but please check out my edited Java code: I would like to pass entries from my Spinner object to the ArrayList<String> object

    – Elgirhath
    Nov 23 '18 at 13:10






  • 1





    @koman900 take a look at this question stackoverflow.com/questions/32127374/…

    – Marina Budkovets
    Nov 23 '18 at 13:22






  • 1





    This doesn't really make sense. You already know exactly what those values are. What is the point of building an ArrayList from the Spinner values?

    – Mike M.
    Nov 23 '18 at 13:43














-2












-2








-2








I have a spinner, created in an XML file:



<Spinner
android:id="@+id/unitSpinner"
android:entries="@array/units" />


With its entries defined in array.xml



<string-array name="units">
<item>g</item>
<item>kg</item>
<item>ml</item>
<item>l</item>
<item>szt.</item>
<item>op.</item>
</string-array>


Now in my Java file I want to create an ArrayList<String> which contents after feeding it with Spinner's entries would be:



["g", "kg", "ml", "l", "szt.", "op."]


My Java code looks like this:



Spinner unit = (Spinner) findViewById(R.id.unitSpinner);
ArrayList<String> array = new ArrayList<>();
//pass information from unit to array


EDIT:



This question differs from many questions like Android : Fill Spinner From Java Code Programmatically as I don't want to fill Spinner with an Array, but the opposite way.










share|improve this question
















I have a spinner, created in an XML file:



<Spinner
android:id="@+id/unitSpinner"
android:entries="@array/units" />


With its entries defined in array.xml



<string-array name="units">
<item>g</item>
<item>kg</item>
<item>ml</item>
<item>l</item>
<item>szt.</item>
<item>op.</item>
</string-array>


Now in my Java file I want to create an ArrayList<String> which contents after feeding it with Spinner's entries would be:



["g", "kg", "ml", "l", "szt.", "op."]


My Java code looks like this:



Spinner unit = (Spinner) findViewById(R.id.unitSpinner);
ArrayList<String> array = new ArrayList<>();
//pass information from unit to array


EDIT:



This question differs from many questions like Android : Fill Spinner From Java Code Programmatically as I don't want to fill Spinner with an Array, but the opposite way.







java android arrays spinner






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 23 '18 at 13:06







Elgirhath

















asked Nov 23 '18 at 12:53









ElgirhathElgirhath

867




867













  • Could you please explain what you mean more clearly?

    – Elgirhath
    Nov 23 '18 at 13:04











  • Do you mean something like that Change String-Array in Strings.xml to ArrayList ?

    – user141080
    Nov 23 '18 at 13:05











  • @user141080 this question is helpful, but please check out my edited Java code: I would like to pass entries from my Spinner object to the ArrayList<String> object

    – Elgirhath
    Nov 23 '18 at 13:10






  • 1





    @koman900 take a look at this question stackoverflow.com/questions/32127374/…

    – Marina Budkovets
    Nov 23 '18 at 13:22






  • 1





    This doesn't really make sense. You already know exactly what those values are. What is the point of building an ArrayList from the Spinner values?

    – Mike M.
    Nov 23 '18 at 13:43



















  • Could you please explain what you mean more clearly?

    – Elgirhath
    Nov 23 '18 at 13:04











  • Do you mean something like that Change String-Array in Strings.xml to ArrayList ?

    – user141080
    Nov 23 '18 at 13:05











  • @user141080 this question is helpful, but please check out my edited Java code: I would like to pass entries from my Spinner object to the ArrayList<String> object

    – Elgirhath
    Nov 23 '18 at 13:10






  • 1





    @koman900 take a look at this question stackoverflow.com/questions/32127374/…

    – Marina Budkovets
    Nov 23 '18 at 13:22






  • 1





    This doesn't really make sense. You already know exactly what those values are. What is the point of building an ArrayList from the Spinner values?

    – Mike M.
    Nov 23 '18 at 13:43

















Could you please explain what you mean more clearly?

– Elgirhath
Nov 23 '18 at 13:04





Could you please explain what you mean more clearly?

– Elgirhath
Nov 23 '18 at 13:04













Do you mean something like that Change String-Array in Strings.xml to ArrayList ?

– user141080
Nov 23 '18 at 13:05





Do you mean something like that Change String-Array in Strings.xml to ArrayList ?

– user141080
Nov 23 '18 at 13:05













@user141080 this question is helpful, but please check out my edited Java code: I would like to pass entries from my Spinner object to the ArrayList<String> object

– Elgirhath
Nov 23 '18 at 13:10





@user141080 this question is helpful, but please check out my edited Java code: I would like to pass entries from my Spinner object to the ArrayList<String> object

– Elgirhath
Nov 23 '18 at 13:10




1




1





@koman900 take a look at this question stackoverflow.com/questions/32127374/…

– Marina Budkovets
Nov 23 '18 at 13:22





@koman900 take a look at this question stackoverflow.com/questions/32127374/…

– Marina Budkovets
Nov 23 '18 at 13:22




1




1





This doesn't really make sense. You already know exactly what those values are. What is the point of building an ArrayList from the Spinner values?

– Mike M.
Nov 23 '18 at 13:43





This doesn't really make sense. You already know exactly what those values are. What is the point of building an ArrayList from the Spinner values?

– Mike M.
Nov 23 '18 at 13:43












1 Answer
1






active

oldest

votes


















4














You can get the list from the XML array directly. no need to get ti from the spinner



String ss  = getResources().getStringArray(R.array.units);
ArrayList<String> array = Arrays.asList(words);


if this aproach does not work with you you can try to get all the items fom the spinner via loop



    for( int i = 0  ; i< unit.getAdapter().getCount() ; i++ ){
array.add ( ss.getAdapter().getItem( i ) )

}


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%2f53447112%2fandroid-create-arraylist-from-spinner-programmatically%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









    4














    You can get the list from the XML array directly. no need to get ti from the spinner



    String ss  = getResources().getStringArray(R.array.units);
    ArrayList<String> array = Arrays.asList(words);


    if this aproach does not work with you you can try to get all the items fom the spinner via loop



        for( int i = 0  ; i< unit.getAdapter().getCount() ; i++ ){
    array.add ( ss.getAdapter().getItem( i ) )

    }


    Hope this will help.






    share|improve this answer




























      4














      You can get the list from the XML array directly. no need to get ti from the spinner



      String ss  = getResources().getStringArray(R.array.units);
      ArrayList<String> array = Arrays.asList(words);


      if this aproach does not work with you you can try to get all the items fom the spinner via loop



          for( int i = 0  ; i< unit.getAdapter().getCount() ; i++ ){
      array.add ( ss.getAdapter().getItem( i ) )

      }


      Hope this will help.






      share|improve this answer


























        4












        4








        4







        You can get the list from the XML array directly. no need to get ti from the spinner



        String ss  = getResources().getStringArray(R.array.units);
        ArrayList<String> array = Arrays.asList(words);


        if this aproach does not work with you you can try to get all the items fom the spinner via loop



            for( int i = 0  ; i< unit.getAdapter().getCount() ; i++ ){
        array.add ( ss.getAdapter().getItem( i ) )

        }


        Hope this will help.






        share|improve this answer













        You can get the list from the XML array directly. no need to get ti from the spinner



        String ss  = getResources().getStringArray(R.array.units);
        ArrayList<String> array = Arrays.asList(words);


        if this aproach does not work with you you can try to get all the items fom the spinner via loop



            for( int i = 0  ; i< unit.getAdapter().getCount() ; i++ ){
        array.add ( ss.getAdapter().getItem( i ) )

        }


        Hope this will help.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 23 '18 at 13:31









        Diaa SaadaDiaa Saada

        4811919




        4811919
































            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%2f53447112%2fandroid-create-arraylist-from-spinner-programmatically%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

            If I really need a card on my start hand, how many mulligans make sense? [duplicate]

            Alcedinidae

            Can an atomic nucleus contain both particles and antiparticles? [duplicate]