//打开焦点 ct_msg.setFocusable(true); ct_textTo.setFocusable(true); //可以长按 ct_msg.setFocusableInTouchMode(true); ct_textTo.setFocusableInTouchMode(true); //可以编辑 ct_msg.setEnabled(true); ct_textTo.setEnabled(true); //重新请求焦点 ct_msg.requestFocus(); ct_textTo.requestFocus(); //强制调用键盘 InputMethodManager inputMethodManager = (InputMethodManager) FileDetailsActivity.this.getSystemService(Context.INPUT_METHOD_SERVICE); inputMethodManager.toggleSoftInput(0, InputMethodManager.HIDE_NOT_ALWAYS);
android EditText基础
最新推荐文章于 2024-08-19 20:34:27 发布