Android 显示和隐藏软键盘

来源:互联网 发布:买家淘宝客开通条件 编辑:程序博客网 时间:2024/06/16 19:34

<span style="font-family: Arial, Helvetica, sans-serif; background-color: rgb(255, 255, 255);">Android 显示和隐藏软键盘</span>
<span style="font-family: Arial, Helvetica, sans-serif;">InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);  </span>

imm.toggleSoftInput(0, InputMethodManager.HIDE_NOT_ALWAYS);  


Edittext获取焦点

passwde.setFocusable(true);   passwde.setFocusableInTouchMode(true);   passwde.requestFocus();  


0 0