android 隐藏输入法
- editText=(EditText)findViewById(R.id.txtBody);
- editText.setOnTouchListener(new OnTouchListener() {
- public boolean onTouch(View v, MotionEvent event) {
- editText.setInputType(InputType.TYPE_NULL); // 关闭软键盘
- return false;
- }
- });
android 调用输入法
- InputMethodManager m=(InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
- m.toggleSoftInput(0, InputMethodManager.HIDE_NOT_ALWAYS);