WEB开发网
开发学院手机开发Android 开发 android EDITTEXT调用和隐藏输入法 阅读

android EDITTEXT调用和隐藏输入法

 2013-07-29 18:14:37 来源:开发学院   
核心提示:android 隐藏输入法editText=(EditText)findViewById(R.id.txtBody); editText.setOnTouchListener(new OnTouchListener() { public boolean onTouch(View v, Mo

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);  

Tags:android EDITTEXT 调用

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接