Skip to content

Instantly share code, notes, and snippets.

@Limuyang1013
Created January 4, 2016 08:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Limuyang1013/74f6d53b29fdd439fc18 to your computer and use it in GitHub Desktop.
Save Limuyang1013/74f6d53b29fdd439fc18 to your computer and use it in GitHub Desktop.
显示或隐藏虚拟键盘
显示:
InputMethodManager imm = (InputMethodManager)(getSystemService(Context.INPUT_METHOD_SERVICE));
imm.toggleSoftInput(InputMethodManager.SHOW_FORCED, 0);
隐藏:
InputMethodManager imm = (InputMethodManager)(getSystemService(Context.INPUT_METHOD_SERVICE));
imm.hideSoftInputFromWindow(m_edit.getWindowToken(), 0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment