Skip to content
Advertisement

ListView is not updating once I add elements to the array

JavaScript

I want my ListView to update as I add things to the array. It doesn’t work. I added a notifyDataSetChanged() to the updater code, but it does nothing. I’ve used Log.d tags to make sure the Arrays actually have their values, at pretty much every point of the code and they do. The issue seems to be that the ListView doesn’t update since its in onCreate which runs once. I can’t put it anywhere else though.

Advertisement

Answer

I think an other solution is that you call the notifyDatasetChange() in the onResume() function (You should override the onResume() function)

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement