Android : clear listview in Listadapter

AnnaSmith picture AnnaSmith · May 31, 2012 · Viewed 29.6k times · Source

Possible Duplicate:
how to clear my listview in android

In android, i have used a listadapter, simple adapter and passed an array and i want to clear the listview contents? Instead of clearing , it is appending the records to my listview.

Answer

Shaiful picture Shaiful · May 31, 2012

Grab my Custom adapter from here. TestAdapter

Now add a method like this..

public void clearAdapter()
    {
        deviceNames.clear();
        selected.clear();
        notifyDataSetChanged();
    }

Now call youListAdapter.clearAdapter() from you Activity.