Refreshing ArrayAdapter onResume [notifyDataSetChanged() not working]

你离开我真会死。 提交于 2019-12-03 12:29:24

the issue you're having is that you're overwriting the entries reference and it's not getting changed on the adapter. Here's how you can fix this

@Override
public void onResume() {

    super.onResume();
    entries.clear();
    entries.addAll(contactStorage.getContactListNames());
    adapter.notifyDataSetChanged();
    Log.d(TAG, "List Frag Resumed");

}

this is a common mistake to make, it's caused because when you first create a list (in memory) and your entries field points to that, you then tell the adapter to look at that memory location when you create it, but onResume you create a new list in memory (when you get the contact list names again) and you tell entries to point to that new list in memory, what you need to do is replace the entries in the original list with the entries in the new list, that way the adapter will still reference the same list.

notifyDataSetChanged() won't work for you. Reasons why

Your adapter loses reference to your list. When you first initialize the Adapter it takes a reference of your arrayList and pass to its superclass. But if you reinitialize your existing arrayList it losts the reference hence the communication channel with Adapter :(.

Always creating and adding a new list to the Adapter. Do like this:

  1. Initialize the arrayList while declaring globally.
  2. Add List to the adapter directly with out checking null and empty condition. Set the adapter to the list directly(don't check for any condition). Adapter gives you the guarantee that wherever you are changes the data of arrayList it will take care, but never loose the reference.
  3. Add data to the arrayList Every time(if your data is completely new than you can call adapter.clear() and arrayList.clear() before actually adding data to the list) but don't set the adapter i.e If the new data is populated in the arrayList than just adapter.notifyDataSetChanged()

Keep trust to Documentations

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!