I have a spinner and a listview in the same Activity. The listview is loaded with a list of items. i want when user clicks on the item from spinner the listview will be clear and new listview will load according to item chooses in spinner
setListAdapter(new ArrayAdapter<String>(this, R.layout.listviewxml, video));
ListView lv=getListView();
lv.setTextFilterEnabled(true);
Please tell how to do this?
i am not able to clear the listview
If you have passed a List or an Array to the Adapter, then
// Clear collection..
collection.clear();
// Add data to collection..
collection.add();
// Refresh your listview..
listview.getAdapter().notifyDataSetChanged();
(These codes are like pseudo code, your syntax may vary)
When a new item is chosen in your Spinner
use on your ListView
adapter :
//Clear existing items
listAdapter.clear();
//Add new items
listAdapter.addAll(collectionOfItems);
//Notify that the data has changed
listAdapter.notifyDataSetChanged();
You could just try setting a null adapter to the listview. So you could just do :
lv.setadapter(null);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With