android 软件盘打开 关闭_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > android 软件盘打开 关闭

android 软件盘打开 关闭

 2013/7/15 22:48:28  杀#嘻哈  博客园  我要评论(0)
  • 摘要:点击按钮关闭软件盘publicstaticvoidhideSoftInput(Activityacitivity){LogUtil.d("hideSoftInput");InputMethodManagerimm=(InputMethodManager)acitivity.getSystemService(Context.INPUT_METHOD_SERVICE);imm.hideSoftInputFromWindow(acitivity.getWindow().getDecorView()
  • 标签:android 软件
  1. 点击按钮关闭软件盘  

    public static void hideSoftInput(Activity acitivity) {
    LogUtil.d("hideSoftInput");
    InputMethodManager imm = (InputMethodManager) acitivity
    .getSystemService(Context.INPUT_METHOD_SERVICE);
    imm.hideSoftInputFromWindow(acitivity.getWindow().getDecorView()
    .getApplicationWindowToken(),
    InputMethodManager.HIDE_NOT_ALWAYS);
    }

  2. 指定EditText 弹出软键盘   

    public static void showSoftInput(EditText et) {
    LogUtil.d("showSoftInput");
    et.requestFocus();
    InputMethodManager imm = (InputMethodManager) et.getContext()
    .getSystemService(Context.INPUT_METHOD_SERVICE);
    imm.showSoftInput(et, InputMethodManager.RESULT_UNCHANGED_SHOWN);

    }

上一篇: Windows Phone 8仿Toast弹出通知。 下一篇: 没有下一篇了!
发表评论
用户名: 匿名