We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a26bf5 commit fba4d4aCopy full SHA for fba4d4a
policy/src/com/android/internal/policy/impl/keyguard/KeyguardPasswordView.java
@@ -72,7 +72,9 @@ public boolean needsInput() {
72
@Override
73
public void onResume() {
74
super.onResume();
75
- mImm.toggleSoftInput(InputMethodManager.SHOW_FORCED, 0);
+ // XXX this is still not right because onResume is being called every time the page changes
76
+ mPasswordEntry.requestFocus();
77
+ mImm.showSoftInput(mPasswordEntry, InputMethodManager.SHOW_IMPLICIT);
78
}
79
80
0 commit comments