Merge "Avoid NPE around mReusedTask of ActivityStarter"

am: f741f88284

Change-Id: I64701d06c2e15b0ad11018c233fce32dce1caa52
This commit is contained in:
Shigeki Yokomichi
2016-10-24 14:21:25 +00:00
committed by android-build-merger

View File

@@ -1614,9 +1614,9 @@ class ActivityStarter {
== (FLAG_ACTIVITY_NEW_TASK | FLAG_ACTIVITY_CLEAR_TASK)) {
// The caller has requested to completely replace any existing task with its new
// activity. Well that should not be too hard...
intentActivity.task.performClearTaskLocked();
intentActivity.task.setIntent(mStartActivity);
mReuseTask = intentActivity.task;
mReuseTask.performClearTaskLocked();
mReuseTask.setIntent(mStartActivity);
// When we clear the task - focus will be adjusted, which will bring another task
// to top before we launch the activity we need. This will temporary swap their
// mTaskToReturnTo values and we don't want to overwrite them accidentally.