Merge "Only check isTopOfTask() when needed"
This commit is contained in:
committed by
Android (Google) Code Review
commit
c01a03bf80
@@ -1768,7 +1768,7 @@ public class Activity extends ContextThemeWrapper
|
||||
protected void onResume() {
|
||||
if (DEBUG_LIFECYCLE) Slog.v(TAG, "onResume " + this);
|
||||
dispatchActivityResumed();
|
||||
mActivityTransitionState.onResume(this, isTopOfTask());
|
||||
mActivityTransitionState.onResume(this);
|
||||
enableAutofillCompatibilityIfNeeded();
|
||||
if (mAutoFillResetNeeded) {
|
||||
if (!mAutoFillIgnoreFirstResumePause) {
|
||||
|
||||
@@ -258,10 +258,10 @@ class ActivityTransitionState {
|
||||
}
|
||||
}
|
||||
|
||||
public void onResume(Activity activity, boolean isTopOfTask) {
|
||||
public void onResume(Activity activity) {
|
||||
// After orientation change, the onResume can come in before the top Activity has
|
||||
// left, so if the Activity is not top, wait a second for the top Activity to exit.
|
||||
if (isTopOfTask || mEnterTransitionCoordinator == null) {
|
||||
if (mEnterTransitionCoordinator == null || activity.isTopOfTask()) {
|
||||
restoreExitedViews();
|
||||
restoreReenteringViews();
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user