Full exception : Unhandeled exception: The content of the adapter has changed but ListView did not receive a notification. Make sure the content of your adapter is not modified from a background thread, but only from the UI thread. Make sure your adapter calls notifyDataSetChanged() when its content changes. [in ListView(2131296364, class android.widget.ListView) with Adapter(class elfar.insitemobile.Tabs.EventTable$EventTableListAdapter)]
It happens only when the app starts (the list is updating with the pending events), and it happens only sometimes. I noticed that it happened when there are a lot of pending events to update in the list when the app starts. If there are only few items to update it wont happen.
I tried to run those list changes inside of a thread and placed notifyDataSetChanged()
after each update, but it still happens.