I have developed an app in Honeycomb and I am using fragments. This is my app
You can simply set the RetainInstance property inside OnCreate of the fragment class.
RetainInstance
OnCreate
public override void OnCreate(Bundle savedInstanceState) { base.OnCreate(savedInstanceState); RetainInstance = true; }
Retain the Fragment object while rotating