Heres what I did:
- Using
ListFragment - Setting list adapter (an empty custom adapter) in
onCreate() - Populating the list adapter and setting
adapter.notifyDataSetChanged()inonCreateView()-> button onclick listener with anasyncTask
The parent activity replaces the ListFragment with another fragment when a list item in the ListFragment is clicked. Then I hit the back key and return to previous ListFragment. But the ListView of the ListFragment is empty. I checked the list adapter and found that its not empty and contains all the items that was being displayed by the ListView before pressing the list item. But this ListView is not showing them for some reason. I tried resetting the adapter and setting notifyDataSetChanged in the onStart(), but it didnt work. I have another ListFragment just like this, but that works fine. The only difference between these two fragments is that the working fragment loads adapter in onStart(), and the malfunctioning fragment loads adapter when the user presses a button.
