I have a simple activity with a list fragment on the left and a details fragment on the right. Tapping a list item kicks off a loader which gets some data over HTTP and delivers it in onLoadFinished(). That works fine, but I'd like to change the detail fragment at this point. Calling FragmentTransaction.commit() results in an IllegalStateException, as explained in the docs [1]. FragmentTransaction.commitAllowingStateLoss() seems to work, but feels wrong. What would be the right/preferred way to do this? postDealyed()?
1. http://developer.android.com/reference/android/app/LoaderManager.LoaderCallbacks.html#onLoadFinished(android.content.Loader<D>, D) -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

