diff options
author | Jim Miller <jaggies@google.com> | 2011-06-13 19:56:32 -0700 |
---|---|---|
committer | Jim Miller <jaggies@google.com> | 2011-06-13 23:57:31 -0700 |
commit | 70832a3d77d90f09fb7ba27612c9cbec6a92abe6 (patch) | |
tree | f9fc05173a4959e2337eff1aad3d235d772b553c /policy | |
parent | fcc79771f092f34505b1accb80365cbcaa379667 (diff) | |
download | frameworks_base-70832a3d77d90f09fb7ba27612c9cbec6a92abe6.zip frameworks_base-70832a3d77d90f09fb7ba27612c9cbec6a92abe6.tar.gz frameworks_base-70832a3d77d90f09fb7ba27612c9cbec6a92abe6.tar.bz2 |
Some tuning for MultiWaveView animations and assets:
- allow individual chevrons to be specified for (top, bottom, left, right).
- move ring to pressed position (currently w/o animation)
- add top/bottom chevron handling and refactor code accordingly.
- constrain drag handle to the ring
Change-Id: I859b2d03d8f0397c68b87a8ee15df20d55c9552c
Diffstat (limited to 'policy')
-rw-r--r-- | policy/src/com/android/internal/policy/impl/LockScreen.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/policy/src/com/android/internal/policy/impl/LockScreen.java b/policy/src/com/android/internal/policy/impl/LockScreen.java index 0178395..c7dc399 100644 --- a/policy/src/com/android/internal/policy/impl/LockScreen.java +++ b/policy/src/com/android/internal/policy/impl/LockScreen.java @@ -710,11 +710,17 @@ class LockScreen extends LinearLayout implements KeyguardScreen, if (mEnergyWave != null) { mEnergyWave.reset(); } + if (mMultiWaveView != null) { + mMultiWaveView.reset(false); + } } /** {@inheritDoc} */ public void onResume() { resetStatusInfo(mUpdateMonitor); + if (mMultiWaveView != null) { + mMultiWaveView.ping(); + } } /** {@inheritDoc} */ |