Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0f681fb3 authored by Kevin Chyn's avatar Kevin Chyn Committed by Android (Google) Code Review
Browse files

Merge "Add a delay before requesting the IME"

parents 0d7929c5 804d0c9f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -72,10 +72,10 @@ public class AuthCredentialPasswordView extends AuthCredentialView
        }

        // Wait a bit to focus the field so the focusable flag on the window is already set then.
        post(() -> {
        postDelayed(() -> {
            mPasswordField.requestFocus();
            mImm.showSoftInput(mPasswordField, InputMethodManager.SHOW_IMPLICIT);
        });
        }, 100);
    }

    @Override