In my app, if you click on a button then i want to remove all the listview items. Here, i am using the base adapter for adding the items to the list view.
How can i
Call setListAdapter()
again. This time with an empty ArrayList.
ListView
operates based on the underlying data in the Adapter
. In order to clear the ListView
you need to do two things:
notifyDataSetChanged
For example, see the skeleton of SampleAdapter
below that extends the BaseAdapter
public class SampleAdapter extends BaseAdapter {
ArrayList<String> data;
public SampleAdapter() {
this.data = new ArrayList<String>();
}
public int getCount() {
return data.size();
}
public Object getItem(int position) {
return data.get(position);
}
public long getItemId(int position) {
return position;
}
public View getView(int position, View convertView, ViewGroup parent) {
// your View
return null;
}
}
Here you have the ArrayList<String> data
as the data for your Adapter. While you might not necessary use ArrayList, you will have something similar in your code to represent the data in your ListView
Next you provide a method to clear this data, the implementation of this method is to clear the underlying data structure
public void clearData() {
// clear the data
data.clear();
}
If you are using any subclass of Collection, they will have clear() method that you could use as above.
Once you have this method, you want to call clearData
and notifyDataSetChanged
on your onClick
thus the code for onClick
will look something like:
// listView is your instance of your ListView
SampleAdapter sampleAdapter = (SampleAdapter)listView.getAdapter();
sampleAdapter.clearData();
// refresh the View
sampleAdapter.notifyDataSetChanged();
I just clean the arraylist , try values.clear();
values = new ArrayList<String>();
values.clear();
ArrayAdapter <String> adapter;
adapter = new ArrayAdapter<String>(this, R.layout.list,android.R.id.text1, values);
lista.setAdapter(adapter);
Remove the data from the adapter
and call adapter.notifyDataSetChanged();
For me worked this way:
private ListView yourListViewName;
private List<YourClassName> yourListName;
...
yourListName = new ArrayList<>();
yourAdapterName = new yourAdapterName(this, R.layout.your_layout_name, yourListName);
...
if (yourAdapterName.getCount() > 0) {
yourAdapterName.clear();
yourAdapterName.notifyDataSetChanged();
}
yourAdapterName.add(new YourClassName(yourParameter1, yourParameter2, ...));
yourListViewName.setAdapter(yourAdapterName);
You can do this:
listView.setAdapter(null);