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.
2 parents 6e36f10 + fba4d4a commit 62e9c05Copy full SHA for 62e9c05
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