Merge "Cancel show runnable when bouncer is hidden" into qt-r1-dev

This commit is contained in:
TreeHugger Robot
2019-07-25 18:03:50 +00:00
committed by Android (Google) Code Review

View File

@@ -207,14 +207,12 @@ public class KeyguardBouncer {
* @see #onFullyShown()
*/
private void onFullyHidden() {
if (!mShowingSoon) {
cancelShowRunnable();
if (mRoot != null) {
mRoot.setVisibility(View.INVISIBLE);
}
mFalsingManager.onBouncerHidden();
DejankUtils.postAfterTraversal(mResetRunnable);
cancelShowRunnable();
if (mRoot != null) {
mRoot.setVisibility(View.INVISIBLE);
}
mFalsingManager.onBouncerHidden();
DejankUtils.postAfterTraversal(mResetRunnable);
}
private final Runnable mShowRunnable = new Runnable() {