Remove FLAG_ACTIVITY_FORWARD_RESULT in 2-pane flow
Settings$CreateShortcutActivity does not necessary to be displayed in 2-pane and it seems no scenario needs the flag Intent.FLAG_ACTIVITY_FORWARD_RESULT. Bug: 241346847 Test: build pass Change-Id: I7a8fca61b453db70233b151711df516649424e3a
This commit is contained in:
@@ -173,7 +173,6 @@ public class SettingsHomepageActivity extends FragmentActivity implements
|
||||
if (userInfo.isManagedProfile()) {
|
||||
final Intent intent = new Intent(getIntent())
|
||||
.setClass(this, DeepLinkHomepageActivityInternal.class)
|
||||
.addFlags(Intent.FLAG_ACTIVITY_FORWARD_RESULT)
|
||||
.putExtra(EXTRA_USER_HANDLE, getUser());
|
||||
intent.removeFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
||||
startActivityAsUser(intent, um.getPrimaryUser().getUserHandle());
|
||||
@@ -451,7 +450,6 @@ public class SettingsHomepageActivity extends FragmentActivity implements
|
||||
intent.setAction(null);
|
||||
|
||||
targetIntent.removeFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_NEW_DOCUMENT);
|
||||
targetIntent.addFlags(Intent.FLAG_ACTIVITY_FORWARD_RESULT);
|
||||
|
||||
// Sender of intent may want to send intent extra data to the destination of targetIntent.
|
||||
targetIntent.replaceExtras(intent);
|
||||
|
Reference in New Issue
Block a user