隐藏键盘
Posted 希小风
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了隐藏键盘相关的知识,希望对你有一定的参考价值。
- InputMethodManager manager manager = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
- @Override
- public boolean onTouchEvent(MotionEvent event) {
- // TODO Auto-generated method stub
- if(event.getAction() == MotionEvent.ACTION_DOWN){
- if(getCurrentFocus()!=null && getCurrentFocus().getWindowToken()!=null){
- manager.hideSoftInputFromWindow(getCurrentFocus().getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS);
- }
- }
- return super.onTouchEvent(event);
- }
以上是关于隐藏键盘的主要内容,如果未能解决你的问题,请参考以下文章