Merge "Revert "Disallow starting activities without new task from non-activity context."" into oc-dev am: 367b880c02

am: 272b3903ef

Change-Id: Ib094291d6ea26947687477f9e3cec35f6cfd97a8
This commit is contained in:
Bryce Lee
2017-05-23 20:03:45 +00:00
committed by android-build-merger

View File

@@ -844,9 +844,8 @@ class ContextImpl extends Context {
// Calling start activity from outside an activity without FLAG_ACTIVITY_NEW_TASK is
// generally not allowed, except if the caller specifies the task id the activity should
// be launched in.
if ((intent.getFlags() & Intent.FLAG_ACTIVITY_NEW_TASK) == 0
&& (options == null
|| ActivityOptions.fromBundle(options).getLaunchTaskId() == -1)) {
if ((intent.getFlags()&Intent.FLAG_ACTIVITY_NEW_TASK) == 0
&& options != null && ActivityOptions.fromBundle(options).getLaunchTaskId() == -1) {
throw new AndroidRuntimeException(
"Calling startActivity() from outside of an Activity "
+ " context requires the FLAG_ACTIVITY_NEW_TASK flag."