android:configChanges=”orientation” does not work with fragments
Based on my experience with Honeycomb 3.0 and compatibility library (r1). configChange=”orientation” does work with fragments with respect to preventing the activity (to which it is applied) being re-created on an orientation change. If you want the fragment not to be re-created on activity re-creation then call setRetainInstance in onCreate. Unless I’m missing something I … Read more