We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ff5c914 + d03a555 commit ea42443Copy full SHA for ea42443
policy/src/com/android/internal/policy/impl/keyguard/KeyguardHostView.java
@@ -496,6 +496,11 @@ public void onScreenTurnedOn() {
496
if (DEBUG) Log.d(TAG, "screen on");
497
showSecurityScreen(mCurrentSecuritySelection);
498
getSecurityView(mCurrentSecuritySelection).onResume();
499
+
500
+ // This is a an attempt to fix bug 7137389 where the device comes back on but the entire
501
+ // layout is blank but forcing a layout causes it to reappear (e.g. with with
502
+ // hierarchyviewer).
503
+ requestLayout();
504
}
505
506
@Override
0 commit comments