Android 获取EditText焦点后自动弹出软键盘

原文:https://blog.csdn.net/uyy203/article/details/54445306

有时候我们跳转到某些页面时,希望能马上获取特定TextView的焦点并弹出软键盘

        editText.setFocusable(true);
        editText.requestFocus();
        InputMethodManager imm = (InputMethodManager)context.getSystemService(Context.INPUT_METHOD_SERVICE);
        imm.toggleSoftInput(0,InputMethodManager.HIDE_NOT_ALWAYS);

你可能感兴趣的:(Android 获取EditText焦点后自动弹出软键盘)