sir, how can i refresh my custom listview using baseadapter. i don\'t know what to place, or where to place it in my code. please help me. thanks in advance
create one custom method in BaseAdapter
like:
public void updateAdapter(ArrayList arrylst) { this.arrylst= arrylst; //and call notifyDataSetChanged notifyDataSetChanged(); }
and this function call where u want to call: e.g
adapterObject.updateAdapter(Here pass ArrayList);
done.