Merge \"Don\'t compare intent filters on singleTask adjacent launch\" into nyc-dev

am: 42147f0ff3

Change-Id: Ie767b54e2622a823d8e2fe2a864d788c3a81df74
This commit is contained in:
Andrii Kulian
2016-06-23 02:27:25 +00:00
committed by android-build-merger

View File

@@ -1454,7 +1454,8 @@ class ActivityStarter {
} else if ((mLaunchFlags & FLAG_ACTIVITY_LAUNCH_ADJACENT) != 0) {
// For the launch adjacent case we only want to put the activity in an existing
// task if the activity already exists in the history.
intentActivity = mSupervisor.findActivityLocked(mIntent, mStartActivity.info, true);
intentActivity = mSupervisor.findActivityLocked(mIntent, mStartActivity.info,
!mLaunchSingleTask);
} else {
// Otherwise find the best task to put the activity in.
intentActivity = mSupervisor.findTaskLocked(mStartActivity);