android / views-widgets-samples

Multiple samples showing the best practices in views-widgets on Android.
Apache License 2.0
5.05k stars 3.01k forks source link

"Start activity with launch bounds" launches activity in same task #2

Open farmerbb opened 7 years ago

farmerbb commented 7 years ago

The "Start activity with launch bounds" button, which uses ActivityOptions.setLaunchBounds(), does not launch the activity in a new task. Because the activity launches in the same task as the activity it was launched from, it cannot apply new boundaries to itself.

This can be fixed by adding intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); to the intent object at MainActivity.java:96.