Android: notifyDataSetChanged(); not working
One of the main reasons notifyDataSetChanged() won’t work for you – is, Your adapter loses reference to your list. When you first initialize the Adapter it takes a reference of your arrayList and passes it to its superclass. But if you reinitialize your existing arrayList it loses the reference, and hence, the communication channel with … Read more