Android调用系统软键盘_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > Android调用系统软键盘

Android调用系统软键盘

 2013/11/4 13:35:38  安卓吧  博客园  我要评论(0)
  • 摘要:/****@MethodName:closeInputMethod*@Description:关闭系统软键盘*@throws*/publicvoidcloseInputMethod(){try{((InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE)).hideSoftInputFromWindow(getCurrentFocus().getWindowToken(),InputMethodManager
  • 标签:android

/**

 * 

 * @MethodName:closeInputMethod

 * @Description:关闭系统软键盘

 * @throws

 */

public void closeInputMethod(){

try {

((InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE))

.hideSoftInputFromWindow(getCurrentFocus().getWindowToken(),

InputMethodManager.HIDE_NOT_ALWAYS);

catch (Exception e) { }finally{ }

}

/**

 * 

 * @MethodName:openInputMethod

 * @Description:打开系统软键盘

 * @throws

 */

public void openInputMethod(final EditText editText){

Timer timer = new Timer();

timer.schedule(new TimerTask() {

public void run() {

InputMethodManager inputManager = (InputMethodManager) editText

.getContext().getSystemService(

Context.INPUT_METHOD_SERVICE);

inputManager.showSoftInput(editText, 0);

}

}, 200);

}

发表评论
用户名: 匿名