summaryrefslogtreecommitdiff
path: root/samples/IntentPlayground/src/com/example/android/intentplayground/FlagUtils.java
diff options
context:
space:
mode:
Diffstat (limited to 'samples/IntentPlayground/src/com/example/android/intentplayground/FlagUtils.java')
-rw-r--r--samples/IntentPlayground/src/com/example/android/intentplayground/FlagUtils.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/samples/IntentPlayground/src/com/example/android/intentplayground/FlagUtils.java b/samples/IntentPlayground/src/com/example/android/intentplayground/FlagUtils.java
index fdad2f624..662f24895 100644
--- a/samples/IntentPlayground/src/com/example/android/intentplayground/FlagUtils.java
+++ b/samples/IntentPlayground/src/com/example/android/intentplayground/FlagUtils.java
@@ -288,6 +288,9 @@ class FlagUtils {
case ActivityInfo.LAUNCH_SINGLE_TOP:
lm += "singleTop";
break;
+ case ActivityInfo.LAUNCH_SINGLE_INSTANCE_PER_TASK:
+ lm += "singleInstancePerTask";
+ break;
case ActivityInfo.LAUNCH_MULTIPLE:
default:
lm += "standard";