软键盘

来源:互联网 发布:html5权威指南 源码 编辑:程序博客网 时间:2024/04/30 00:03

EditText时弹起软键盘

布局中android:focusable="true"new Handler().postDelayed(new Runnable() {@Overridepublic void run() {InputMethodManager imm = (InputMethodManager) mContext.getSystemService(INPUT_METHOD_SERVICE);imm.toggleSoftInput(0, InputMethodManager.HIDE_NOT_ALWAYS);}}, 100);


原创粉丝点击