am baa89d38: am f930232f: Fix a major problem in fragment lifecycle.

* commit 'baa89d3839f70bd31e5219c636ac24a4cc29928d':
  Fix a major problem in fragment lifecycle.
This commit is contained in:
Dianne Hackborn
2011-06-14 20:57:48 -07:00
committed by Android Git Automerger
3 changed files with 30 additions and 11 deletions

View File

@@ -367,6 +367,9 @@ public class Fragment implements ComponentCallbacks, OnCreateContextMenuListener
// Target fragment.
Fragment mTarget;
// For use when retaining a fragment: this is the index of the last mTarget.
int mTargetIndex = -1;
// Target request code.
int mTargetRequestCode;

View File

@@ -695,6 +695,10 @@ final class FragmentManagerImpl extends FragmentManager {
if (!f.mAdded && newState > Fragment.CREATED) {
newState = Fragment.CREATED;
}
if (f.mRemoving && newState > f.mState) {
// While removing a fragment, we can't change it to a higher state.
newState = f.mState;
}
if (f.mState < newState) {
// For fragments that are created from a layout, when restoring from
@@ -915,6 +919,7 @@ final class FragmentManagerImpl extends FragmentManager {
// the fragment now should move to once the animation
// is done.
f.mStateAfterAnimating = newState;
newState = Fragment.CREATED;
} else {
if (DEBUG) Log.v(TAG, "movefrom CREATED: " + f);
if (!f.mRetaining) {
@@ -932,9 +937,13 @@ final class FragmentManagerImpl extends FragmentManager {
throw new SuperNotCalledException("Fragment " + f
+ " did not call through to super.onDetach()");
}
f.mImmediateActivity = null;
f.mActivity = null;
f.mFragmentManager = null;
if (!f.mRetaining) {
makeInactive(f);
} else {
f.mImmediateActivity = null;
f.mActivity = null;
f.mFragmentManager = null;
}
}
}
}
@@ -1040,9 +1049,6 @@ final class FragmentManagerImpl extends FragmentManager {
fragment.mRemoving = true;
moveToState(fragment, inactive ? Fragment.INITIALIZING : Fragment.CREATED,
transition, transitionStyle);
if (inactive) {
makeInactive(fragment);
}
}
}
@@ -1397,6 +1403,7 @@ final class FragmentManagerImpl extends FragmentManager {
}
fragments.add(f);
f.mRetaining = true;
f.mTargetIndex = f.mTarget != null ? f.mTarget.mIndex : -1;
}
}
}
@@ -1561,6 +1568,7 @@ final class FragmentManagerImpl extends FragmentManager {
f.mBackStackNesting = 0;
f.mInLayout = false;
f.mAdded = false;
f.mTarget = null;
if (fs.mSavedFragmentState != null) {
fs.mSavedFragmentState.setClassLoader(mActivity.getClassLoader());
f.mSavedViewState = fs.mSavedFragmentState.getSparseParcelableArray(
@@ -1600,12 +1608,12 @@ final class FragmentManagerImpl extends FragmentManager {
if (nonConfig != null) {
for (int i=0; i<nonConfig.size(); i++) {
Fragment f = nonConfig.get(i);
if (f.mTarget != null) {
if (f.mTarget.mIndex < mActive.size()) {
f.mTarget = mActive.get(f.mTarget.mIndex);
if (f.mTargetIndex >= 0) {
if (f.mTargetIndex < mActive.size()) {
f.mTarget = mActive.get(f.mTargetIndex);
} else {
Log.w(TAG, "Re-attaching retained fragment " + f
+ " target no longer exists: " + f.mTarget);
+ " target no longer exists: " + f.mTargetIndex);
f.mTarget = null;
}
}

View File

@@ -7544,7 +7544,8 @@ public final class ActivityManagerService extends ActivityManagerNative
pw.println(" COMP_SPEC may also be a component name (com.foo/.myApp),");
pw.println(" a partial substring in a component name, an");
pw.println(" ActivityRecord hex object identifier, or");
pw.println(" \"all\" for all objects");
pw.println(" \"all\" for all objects, or");
pw.println(" \"top\" for the top activity.");
pw.println(" -a: include all available server state.");
pw.println(" -c: include client state.");
return;
@@ -8098,6 +8099,13 @@ public final class ActivityManagerService extends ActivityManagerNative
activities.add(r1);
}
}
} else if ("top".equals(name)) {
synchronized (this) {
final int N = mMainStack.mHistory.size();
if (N > 0) {
activities.add((ActivityRecord)mMainStack.mHistory.get(N-1));
}
}
} else {
ComponentName componentName = ComponentName.unflattenFromString(name);
int objectId = 0;