I have a list which is filled with a custom ArrayAdapter.
ArrayAdapter
I want to update a progress bar every second, so I am trying to use notifyDataSetChanged
notifyDataSetChanged
I probably have the answer. Try this:
((BaseAdapter) arrayAdapter).notifyDataSetChanged();
I had the same problem and this was the solution for mine :)