summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFilip Gruszczynski <gruszczy@google.com>2015-06-19 23:42:16 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2015-06-19 23:42:16 +0000
commita51f8b90f53acbd8967755a39096705704980d05 (patch)
tree817e37830e26716567820975e500240a481e2808
parent8292afedfa7e22a6f278f8cbd5bd7b7912bf43ba (diff)
parent73187e5761063340d2092c37f5584c9b56e4a11e (diff)
downloadframeworks_base-a51f8b90f53acbd8967755a39096705704980d05.zip
frameworks_base-a51f8b90f53acbd8967755a39096705704980d05.tar.gz
frameworks_base-a51f8b90f53acbd8967755a39096705704980d05.tar.bz2
am 73187e57: am dd91362c: Make sure home activity gets resumed after started.
* commit '73187e5761063340d2092c37f5584c9b56e4a11e': Make sure home activity gets resumed after started.
-rw-r--r--services/core/java/com/android/server/am/ActivityStackSupervisor.java14
1 files changed, 12 insertions, 2 deletions
diff --git a/services/core/java/com/android/server/am/ActivityStackSupervisor.java b/services/core/java/com/android/server/am/ActivityStackSupervisor.java
index c54a96d..f967aef 100644
--- a/services/core/java/com/android/server/am/ActivityStackSupervisor.java
+++ b/services/core/java/com/android/server/am/ActivityStackSupervisor.java
@@ -883,8 +883,18 @@ public final class ActivityStackSupervisor implements DisplayListener {
void startHomeActivity(Intent intent, ActivityInfo aInfo, String reason) {
moveHomeStackTaskToTop(HOME_ACTIVITY_TYPE, reason);
- startActivityLocked(null, intent, null, aInfo, null, null, null, null, 0, 0, 0, null,
- 0, 0, 0, null, false, null, null, null);
+ startActivityLocked(null /* caller */, intent, null /* resolvedType */, aInfo,
+ null /* voiceSession */, null /* voiceInteractor */, null /* resultTo */,
+ null /* resultWho */, 0 /* requestCode */, 0 /* callingPid */, 0 /* callingUid */,
+ null /* callingPackage */, 0 /* realCallingPid */, 0 /* realCallingUid */,
+ 0 /* startFlags */, null /* options */, false /* componentSpecified */,
+ null /* outActivity */, null /* container */, null /* inTask */);
+ if (inResumeTopActivity) {
+ // If we are in resume section already, home activity will be initialized, but not
+ // resumed (to avoid recursive resume) and will stay that way until something pokes it
+ // again. We need to schedule another resume.
+ scheduleResumeTopActivities();
+ }
}
final int startActivityMayWait(IApplicationThread caller, int callingUid,