I'm new to android and I'm facing the following problem. I'm developing for both, Android 2 and 3, and this is why I use fragments. However to make the app working on Android 2 devices I import android.support.v4.app.ListFragment. I need to maintain selection within my ListFragment when orientation of the screen changes. I'm overriding onSaveInstanceState() method and put an int into the bundle. When the screen is rotated, this method is called and the int is added to the bundle. However when onActivityCreated() is called, its bundle is null. I am following the example provided on Android website: http://developer.android.com/reference/android/app/Fragment.html, but as mentioned above - after onSaveInstanceState() is called, the bundle in onActivityCreated() is still null.

Here's the code:

import android.support.v4.app.ListFragment;
public class VisitsHomeFragment extends ListFragment {
    private int selectedPosition = -1;  

    @Override
    public void onActivityCreated(Bundle savedInstanceState) {
        super.onActivityCreated(savedInstanceState);
        if (savedInstanceState != null) {
          if (savedInstanceState.containsKey("SELECTED_POSITION")) {
                selectedPosition = savedInstanceState.getInt("SELECTED_POSITION");
          }
        }
    }

    @Override
    public void onSaveInstanceState(Bundle outState) {
        super.onSaveInstanceState(outState);
        outState.putInt("SELECTED_POSITION", selectedPosition);
    }
}

I would appreciate any help with this problem.

link|improve this question
onRestoreInstanceState() is not available for fragments. – Maria Jul 27 '11 at 14:46
My only suggesting is to debug the compat sources to see if you can get a handle on what's going on. – PJL Jul 28 '11 at 13:26
I played with the sample project (HoneycombGallery), added Compatibility Library to it and everything worked just fine... In my app - it doesn't. The temporary solution for me was to add android:configChanges="orientation" to the Manifest, but it doesn't solve the mystery of the lost bundle (actually thinking of writing an andventure book entitled "The Mystery of the Lost Bundle" ;-) ). – Maria Aug 2 '11 at 9:59
In your test was the same version of the compat lib being used? I'm using r1 and briefly updated to r2 but there was at least one bug that I found with onDestroy not being called for a fragment when it was replaced. – PJL Aug 2 '11 at 12:20
Yes, the same. Imported it from my project to the sample project. – Maria Aug 2 '11 at 12:38
feedback

4 Answers

I had the same problem, adding android:id to the fragment element in the layout file fixed this issue.

It seems FragmentManager uses the id to send the appropriate bundle when recreating a fragment.

link|improve this answer
I'm having the same issue as Maria, and I do have android:id defined for the fragment element in my layout file. This might be a compatibility library bug. – Mr. S Jan 17 at 2:19
feedback

You could try adding a logging statement to see if onSaveInstanceState is being called at all. I seem to be having the same problem and as far as I can tell it's never even being called.

Something like Log.d("TEST", "onSaveInstanceState called!"); at the end of your onSaveInstanceState should be able to tell you whether or not it's being called.

(I'd put this in a comment if I was able to make comments)

link|improve this answer
As I mentioned in my first post, onSavaInstanceState() is called, I checked it. The bundle is being lost like at the Heathrow Airport :-) – Maria Aug 2 '11 at 8:08
feedback

I had the same problem, and I eventually tracked it down to having different android:id attribute values on the fragment elements in the two different layouts (portrait and landscape).

link|improve this answer
Hi, thanks for your reply. Unfortunatelly it's not the same problem in my case. – Maria Sep 23 '11 at 12:24
feedback

Make sure you're not calling setRetainInstance(true) in the Fragment. After a little experimentation I pinpointed this as being the error in my code. The downside of having to do it this way is one has to manually bundle all instance data.

After removing the method call and updating my onSaveInstanceState to parcel all of my instance variables, I can now restore list position on rotation.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.