diff options
author | Jorim Jaggi <jjaggi@google.com> | 2014-05-27 02:25:45 +0200 |
---|---|---|
committer | Jorim Jaggi <jjaggi@google.com> | 2014-05-27 02:49:06 +0200 |
commit | c14f829506a5273e8022b461db2d61038b18ac4b (patch) | |
tree | 088bc4d95b7f45eeb7b59bd16d3e6a1559cbe44e /packages/Keyguard/src/com/android/keyguard/KeyguardViewBase.java | |
parent | 2fbad7b6a724cf0a5b98b66fe639d58f5ab10af3 (diff) | |
download | frameworks_base-c14f829506a5273e8022b461db2d61038b18ac4b.zip frameworks_base-c14f829506a5273e8022b461db2d61038b18ac4b.tar.gz frameworks_base-c14f829506a5273e8022b461db2d61038b18ac4b.tar.bz2 |
Skeleton for Keyguard security method appear animations.
Bug: 15163546
Change-Id: Id1c6b4f21b8f182f9d00fb903370de5512eaba1b
Diffstat (limited to 'packages/Keyguard/src/com/android/keyguard/KeyguardViewBase.java')
-rw-r--r-- | packages/Keyguard/src/com/android/keyguard/KeyguardViewBase.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/packages/Keyguard/src/com/android/keyguard/KeyguardViewBase.java b/packages/Keyguard/src/com/android/keyguard/KeyguardViewBase.java index 48b7be9..3e444fa 100644 --- a/packages/Keyguard/src/com/android/keyguard/KeyguardViewBase.java +++ b/packages/Keyguard/src/com/android/keyguard/KeyguardViewBase.java @@ -241,6 +241,13 @@ public abstract class KeyguardViewBase extends FrameLayout implements SecurityCa } /** + * Starts the animation when the Keyguard gets shown. + */ + public void startAppearAnimation() { + mSecurityContainer.startAppearAnimation(); + } + + /** * Verify that the user can get past the keyguard securely. This is called, * for example, when the phone disables the keyguard but then wants to launch * something else that requires secure access. |