Skip to content

Instantly share code, notes, and snippets.

@panpf
Last active August 29, 2015 14:05
Show Gist options
  • Save panpf/477f60a6550220b085b9 to your computer and use it in GitHub Desktop.
Save panpf/477f60a6550220b085b9 to your computer and use it in GitHub Desktop.
Android - 关闭软键盘
/**
* 关闭软键盘
* @param activity
*/
public static void closeSoftInput(Activity activity){
InputMethodManager methodManager = (InputMethodManager) activity.getSystemService(Context.INPUT_METHOD_SERVICE);
methodManager.hideSoftInputFromWindow(activity.getWindow().getDecorView().getWindowToken(), 0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment