Reputation: 65
I'm developing an android aplication and I want to do something like this:
This should work like a form, and at the end, should return a list of items on the "container"
Upvotes: 1
Views: 180
Reputation: 11359
Use adapters Spinners | Android Developers
Added in API level 1
Adds the specified object at the end of the array. Parameters object The object to add at the end of the array.
Added in API level 1 Removes the specified object from the array. Parameters object The object to remove.
After performing add
or remove
call public void notifyDataSetChanged ()
Upvotes: 1