Android 点击listView的item弹出软键盘并且EditText获取焦点

来源:互联网 发布:淘宝身份证照片删除 编辑:程序博客网 时间:2024/05/19 10:38
//打开软键盘public static void openKeyBord(EditText editText,Context context){    InputMethodManager imm = context.getSystemService(Context.INPUT_METHOD_SERVICE);    imm.showSoftInput(editText,InputMethodManager.RESULT_SHOWN);    imm.toggleSoftInput(InputMethodManager.SHOW_FORCED,    InputMethodManager.HIDE_IMPLICIT_ONLY);}//关闭软键盘public static void closeKeybord(EditText editText, Context context){InputMethodManager imm = context.getSystemService(Context.INPUT_METHOD_SERVICE);imm.hideSoftInputFromWindow(editText.getWindowToken(), 0);}//设置EditText获取焦点editText.setFocusable(true);editText.setEnabled(true);editText.setFocusableInTouchMode(true);editText.requestFocus();editText.findFocus();
0 0
原创粉丝点击