From b0ea484615574b6fcf0103ff6ff79cc73e449bc4 Mon Sep 17 00:00:00 2001 From: Mindy Pereira Date: Thu, 17 Apr 2014 14:01:04 -0700 Subject: Update window alpha at the same time as translating Note: algorithm for alpha per progress may be updated This is a first pass proof of concept Change-Id: Ia043200ea737ff9d132e350449e17ba0fde10d65 --- policy/src/com/android/internal/policy/impl/PhoneWindow.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/policy/src/com/android/internal/policy/impl/PhoneWindow.java b/policy/src/com/android/internal/policy/impl/PhoneWindow.java index bed3462cdd53..56abfb4fc2b5 100644 --- a/policy/src/com/android/internal/policy/impl/PhoneWindow.java +++ b/policy/src/com/android/internal/policy/impl/PhoneWindow.java @@ -3449,6 +3449,7 @@ public class PhoneWindow extends Window implements MenuBuilder.Callback { SwipeDismissLayout layout, float progress, float translate) { WindowManager.LayoutParams newParams = getAttributes(); newParams.x = (int) translate; + newParams.alpha = 1 - progress; setAttributes(newParams); int flags = 0; @@ -3464,6 +3465,7 @@ public class PhoneWindow extends Window implements MenuBuilder.Callback { public void onSwipeCancelled(SwipeDismissLayout layout) { WindowManager.LayoutParams newParams = getAttributes(); newParams.x = 0; + newParams.alpha = 1; setAttributes(newParams); setFlags(FLAG_FULLSCREEN, FLAG_FULLSCREEN | FLAG_LAYOUT_NO_LIMITS); } -- cgit v1.2.3-59-g8ed1b