Removed the focus change listener of the username edittext (#3538)

This commit is contained in:
Aryan Tyagi 2020-03-19 14:24:23 +05:30 committed by GitHub
parent 0ad269d3d6
commit 4e51492de6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -145,13 +145,6 @@ public class LoginActivity extends AccountAuthenticatorActivity {
}
}
@OnFocusChange(R.id.login_username)
void onUsernameFocusChanged(View view, boolean hasFocus) {
if (!hasFocus) {
ViewUtil.hideKeyboard(view);
}
}
@OnFocusChange(R.id.login_password)
void onPasswordFocusChanged(View view, boolean hasFocus) {
if (!hasFocus) {