//收键盘,比较有用的
private void hideInputMethodManager(View v) {
InputMethodManager imm = (InputMethodManager) this.getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
}
不让弹键盘(例子)
getActivity().getCurrentFocus().clearFocus();
InputMethodManager imm = (InputMethodManager) getActivity().getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(getActivity().getCurrentFocus().getWindowToken(), 0);
首次进入页面,不让弹键盘,(前面写到过了)
1. getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ STATE_ALWAYS_HIDDEN);
首次进入页面,想要弹出软键盘 onCreate(Bundle bd)加上
2.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE);
点击查看更多内容
为 TA 点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦