i had a EditText , a button and a spinner . When click the button , the spinner will add a new item with name you entered in the EditText. But here is the question, my adapter.add() method seems doesn't work...here is my code:

public class Spr extends Activity {
Button bt1;
EditText et;
ArrayAdapter<CharSequence> adapter;
Spinner spinner;
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    bt1 = (Button)this.findViewById(R.id.bt1);
    et = (EditText)this.findViewById(R.id.et);  
    spinner = (Spinner)this.findViewById(R.id.spr);

    adapter = ArrayAdapter.createFromResource(
            this, R.array.planets_array, android.R.layout.simple_spinner_item);

    adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);

    spinner.setAdapter(adapter);

    bt1.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            String temp = et.getText().toString();

            adapter.add(temp);
            adapter.notifyDataSetChanged();
            spinner.setAdapter(adapter);

        }
    });


    spinner.setOnItemSelectedListener(new Spinner.OnItemSelectedListener(){

        @Override
        public void onItemSelected(AdapterView<?> parent, View view,
                int pos, long id) {

            Toast.makeText(parent.getContext(), "The planet is " +
                      parent.getItemAtPosition(pos).toString(), Toast.LENGTH_LONG).show();

        }

        @Override
        public void onNothingSelected(AdapterView<?> arg0) {

        }});
}

}

thanks! ...still waitting

link|improve this question
You definitely don't need to call spinner.setAdapter() again in your View.OnClickListener. Your code looks like it should work, though. – synic Mar 24 '10 at 4:46
1  
You also don't need to call notifyDataSetChanged(). Just adapter.add() should suffice. When you say "doesn't work", what do you mean? – CommonsWare Mar 24 '10 at 11:51
i seached the answer ,and someone tells me ,call notifyDataSetChanged()and setAdapter()again could be help.so i add it,but it still doesn't work...when i run it ,and click the button .it will jump out a error : the application has stopped un expectedly.please try again...(i think the problem is on the method spinner.add(). ) thanks for your help! – allen Mar 25 '10 at 1:20
it would help if you could show us the exception shown by logcat at the moment you app crashes. – Janusz Mar 25 '10 at 13:41
there is no exception appears.i tryed : put the items in a ArrayList al , and then adapter = new ArrayAdapter<String>(... , ... , al ) ...then It works...my question is : what's the difference between them(i mean ArrayAdapter.createFromResource()method and new ArrayAdapter<String>())?? and i'm sorry that my english is so poor,i whish you can understand what i'm saying... thank you so much – allen Mar 26 '10 at 4:15
show 1 more comment
feedback

3 Answers

When you have created your ArrayAdapter you haven't assigned a resizeable List to it, so when you do add() it cannot increment the size of it and throws a UnsupportedOperationException.

Try something like this:

List<CharSequence> planets = new ArrayList<CharSequence>();
adapter = new ArrayAdapter<CharSequence>(context,
                       R.array.planets_array, planets);
//now you can call adapter.add()

You should use a List. With an Array such as CharSequence[] you would get the same UnsupportedOperationException exception.

link|improve this answer
feedback

Javi is right except dont reference and array for the second variable...

adapter = new ArrayAdapter<CharSequence>(this, android.R.layout.simple_spinner_item, someList);
link|improve this answer
feedback

I believe this is working as designed, but not as expected. ArrayAdapter used to only take an array, but the list constructor was added later. I'm guessing its just doing a toArray() on your list. This is why you have to either call add on the adapter, or create a new adapter when your List changes.

link|improve this answer
feedback

protected by Community Jan 24 at 23:03

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.