Loading policy/src/com/android/internal/policy/impl/LockPatternKeyguardView.java +6 −2 Original line number Diff line number Diff line Loading @@ -996,10 +996,14 @@ public class LockPatternKeyguardView extends KeyguardViewBase implements Handler public boolean handleMessage(Message msg) { switch (msg.what) { case MSG_SHOW_FACELOCK_AREA_VIEW: if (mFaceLockAreaView != null) { mFaceLockAreaView.setVisibility(View.VISIBLE); } break; case MSG_HIDE_FACELOCK_AREA_VIEW: if (mFaceLockAreaView != null) { mFaceLockAreaView.setVisibility(View.GONE); } break; default: Log.w(TAG, "Unhandled message"); Loading Loading
policy/src/com/android/internal/policy/impl/LockPatternKeyguardView.java +6 −2 Original line number Diff line number Diff line Loading @@ -996,10 +996,14 @@ public class LockPatternKeyguardView extends KeyguardViewBase implements Handler public boolean handleMessage(Message msg) { switch (msg.what) { case MSG_SHOW_FACELOCK_AREA_VIEW: if (mFaceLockAreaView != null) { mFaceLockAreaView.setVisibility(View.VISIBLE); } break; case MSG_HIDE_FACELOCK_AREA_VIEW: if (mFaceLockAreaView != null) { mFaceLockAreaView.setVisibility(View.GONE); } break; default: Log.w(TAG, "Unhandled message"); Loading