From ca8686af744f30992904ead71db7bb39866d4f99 Mon Sep 17 00:00:00 2001 From: Winson Chung Date: Mon, 13 Oct 2014 17:44:35 -0700 Subject: [PATCH] Fixing regression with screen pinning button not animating for the first task. (Bug 17985087) Change-Id: I81b8b5d6521c99023bbaf903d1bfb95015fbe756 --- .../src/com/android/systemui/recents/views/TaskView.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/SystemUI/src/com/android/systemui/recents/views/TaskView.java b/packages/SystemUI/src/com/android/systemui/recents/views/TaskView.java index 5b2252453bd7b..dfb30f30b3781 100644 --- a/packages/SystemUI/src/com/android/systemui/recents/views/TaskView.java +++ b/packages/SystemUI/src/com/android/systemui/recents/views/TaskView.java @@ -228,6 +228,8 @@ public class TaskView extends FrameLayout implements Task.TaskCallbacks, if (isTaskViewLaunchTargetTask) { // Set the dim to 0 so we can animate it in initialDim = 0; + // Hide the action button + mActionButtonView.setAlpha(0f); } else if (occludesLaunchTarget) { // Move the task view off screen (below) so we can animate it in setTranslationY(offscreenY);