summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher3/util/PendingAnimation.java
diff options
context:
space:
mode:
authorTony Wickham <twickham@google.com>2018-04-02 15:22:06 -0700
committerTony <twickham@google.com>2018-04-03 11:20:49 -0700
commit1c6f12d11900f2b7462b09bf4ff9eba208b71417 (patch)
tree7e34814ab4b3761dacda3208e18e27477b6a0de5 /src/com/android/launcher3/util/PendingAnimation.java
parent274b9529fff4df680069afbff51f294346c9f4f7 (diff)
downloadandroid_packages_apps_Trebuchet-1c6f12d11900f2b7462b09bf4ff9eba208b71417.tar.gz
android_packages_apps_Trebuchet-1c6f12d11900f2b7462b09bf4ff9eba208b71417.tar.bz2
android_packages_apps_Trebuchet-1c6f12d11900f2b7462b09bf4ff9eba208b71417.zip
Swipe down on hotseat to launch recent task
If you're ever in overview and swipe down on the hotseat, it will launch the focused task *unless* you entered overview from the workspace and have not scrolled past the first task. This is a hidden state to allow for reversibility of the swipe up from workspace. Also moved PendingAnimation from quickstep to launcher3. Change-Id: Iea077bc0ef7c74f6bf7b98d0a638892b9c5fe36c
Diffstat (limited to 'src/com/android/launcher3/util/PendingAnimation.java')
-rw-r--r--src/com/android/launcher3/util/PendingAnimation.java53
1 files changed, 53 insertions, 0 deletions
diff --git a/src/com/android/launcher3/util/PendingAnimation.java b/src/com/android/launcher3/util/PendingAnimation.java
new file mode 100644
index 000000000..4116d56e1
--- /dev/null
+++ b/src/com/android/launcher3/util/PendingAnimation.java
@@ -0,0 +1,53 @@
+/*
+ * 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.util;
+
+import android.animation.AnimatorSet;
+import android.annotation.TargetApi;
+import android.os.Build;
+
+import java.util.ArrayList;
+import java.util.function.Consumer;
+
+/**
+ * Utility class to keep track of a running animation.
+ *
+ * This class allows attaching end callbacks to an animation is intended to be used with
+ * {@link com.android.launcher3.anim.AnimatorPlaybackController}, since in that case
+ * AnimationListeners are not properly dispatched.
+ */
+@TargetApi(Build.VERSION_CODES.O)
+public class PendingAnimation {
+
+ private final ArrayList<Consumer<Boolean>> mEndListeners = new ArrayList<>();
+
+ public final AnimatorSet anim;
+
+ public PendingAnimation(AnimatorSet anim) {
+ this.anim = anim;
+ }
+
+ public void finish(boolean isSuccess) {
+ for (Consumer<Boolean> listeners : mEndListeners) {
+ listeners.accept(isSuccess);
+ }
+ mEndListeners.clear();
+ }
+
+ public void addEndListener(Consumer<Boolean> listener) {
+ mEndListeners.add(listener);
+ }
+}