diff options
author | Selim Cinek <cinek@google.com> | 2014-12-11 14:09:42 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2014-12-11 14:09:44 +0000 |
commit | f8dc9d7b3d496593c6c6dddcd42cae13ac508876 (patch) | |
tree | ba10d814a9a8884624a1b60dfde74454f7a4f03d /packages/Keyguard/src/com/android | |
parent | 372eb38c17b8bcd304985d7a36168c175f625016 (diff) | |
parent | 525fb7eecf559b2e4609f92662ad5821f8f2b028 (diff) | |
download | frameworks_base-f8dc9d7b3d496593c6c6dddcd42cae13ac508876.zip frameworks_base-f8dc9d7b3d496593c6c6dddcd42cae13ac508876.tar.gz frameworks_base-f8dc9d7b3d496593c6c6dddcd42cae13ac508876.tar.bz2 |
Merge "Fixed a bug where the pattern may become invisible" into lmp-mr1-dev
Diffstat (limited to 'packages/Keyguard/src/com/android')
-rw-r--r-- | packages/Keyguard/src/com/android/keyguard/KeyguardPatternView.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/Keyguard/src/com/android/keyguard/KeyguardPatternView.java b/packages/Keyguard/src/com/android/keyguard/KeyguardPatternView.java index 3212eec..0dfe1dc 100644 --- a/packages/Keyguard/src/com/android/keyguard/KeyguardPatternView.java +++ b/packages/Keyguard/src/com/android/keyguard/KeyguardPatternView.java @@ -370,6 +370,7 @@ public class KeyguardPatternView extends LinearLayout implements KeyguardSecurit final Runnable finishListener) { if (appearing) { animatedCell.scale = 0.0f; + animatedCell.alpha = 1.0f; } animatedCell.translateY = appearing ? translationY : 0; ValueAnimator animator = ValueAnimator.ofFloat(animatedCell.translateY, |