码迷,mamicode.com
首页 > 移动开发 > 详细

Android隐藏输入法

时间:2014-07-16 23:20:25      阅读:329      评论:0      收藏:0      [点我收藏+]

标签:android   des   io   cti   re   c   

输入法隐藏两种方式:

/**
* 隐藏输入法
*
* @param myActivity
*/
public static void hideInput(Activity myActivity,EditText et)
{
  if(et==null)
  {
    ((InputMethodManager) myActivity.getSystemService(Activity.INPUT_METHOD_SERVICE)).hideSoftInputFromWindow(myActivity.getCurrentFocus().getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS);
  }
  else
  {
    InputMethodManager inputMethodManager = (InputMethodManager) myActivity.getApplicationContext().getSystemService(Context.INPUT_METHOD_SERVICE);
    inputMethodManager.hideSoftInputFromWindow(et.getWindowToken(), 0); 
  }
}

Android隐藏输入法,布布扣,bubuko.com

Android隐藏输入法

标签:android   des   io   cti   re   c   

原文地址:http://www.cnblogs.com/chensuqian/p/3811315.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!