I am using an ArrayAdapter to populate the items to list in a android.widget.Spinner. That works all fine.
ArrayAdapter
android.widget.Spinner
But now I wa
In your adapter Class - Delete an Item
remove(position); notifyDataSetChanged();
Add an Item -
adapter.add (newItem); adapter.notifyDataSetChanged ();