summaryrefslogtreecommitdiffstats
path: root/quickstep/src/com/android/launcher3/MutableBoolean.java
diff options
context:
space:
mode:
authorSunny Goyal <sunnygoyal@google.com>2018-03-05 17:20:53 -0800
committerSunny Goyal <sunnygoyal@google.com>2018-03-06 09:51:03 -0800
commit46d259d9fb7b918ee5fee773ee615dd9111aa89f (patch)
treed58b6d13307d64f4c90d3527eb69bd6e6ce7a8f7 /quickstep/src/com/android/launcher3/MutableBoolean.java
parente4a97a5c616f595730462f364580e47bbbd1c940 (diff)
downloadandroid_packages_apps_Trebuchet-46d259d9fb7b918ee5fee773ee615dd9111aa89f.tar.gz
android_packages_apps_Trebuchet-46d259d9fb7b918ee5fee773ee615dd9111aa89f.tar.bz2
android_packages_apps_Trebuchet-46d259d9fb7b918ee5fee773ee615dd9111aa89f.zip
Updating launch transition for transparent activities
When a transparent activity is started from recents, animate the launcher NORMAL state instead of animating the launcher UI separately Change-Id: Ibfc9f7096f668e0129042b8a69ed5130029df797
Diffstat (limited to 'quickstep/src/com/android/launcher3/MutableBoolean.java')
-rw-r--r--quickstep/src/com/android/launcher3/MutableBoolean.java25
1 files changed, 25 insertions, 0 deletions
diff --git a/quickstep/src/com/android/launcher3/MutableBoolean.java b/quickstep/src/com/android/launcher3/MutableBoolean.java
new file mode 100644
index 000000000..75382171a
--- /dev/null
+++ b/quickstep/src/com/android/launcher3/MutableBoolean.java
@@ -0,0 +1,25 @@
+/*
+ * Copyright (C) 2018 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.android.launcher3;
+
+public class MutableBoolean {
+ public boolean value;
+
+ public MutableBoolean(boolean value) {
+ this.value = value;
+ }
+}