当前位置: 代码迷 >> Android >> android掩藏以及显示软键盘
  详细解决方案

android掩藏以及显示软键盘

热度:80   发布时间:2016-05-01 19:27:14.0
android隐藏以及显示软键盘

  1. //隐藏软键盘???
  2. ((InputMethodManager)getSystemService(INPUT_METHOD_SERVICE)).hideSoftInputFromWindow(WidgetSearchActivity.this.getCurrentFocus().getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS); ??
  3. ??
  4. //显示软键盘,控件ID可以是EditText,TextView???
  5. ((InputMethodManager)getSystemService(INPUT_METHOD_SERVICE)).showSoftInput(控件ID,?0); ?
  相关解决方案