Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Heres what I did:

  1. Using ListFragment
  2. Setting list adapter (an empty custom adapter) in onCreate()
  3. Populating the list adapter and setting adapter.notifyDataSetChanged() in onCreateView() -> button onclick listener with an asyncTask

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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.