Skip to content

Instantly share code, notes, and snippets.

@ohjongin
Created August 22, 2013 07:53
Show Gist options
  • Save ohjongin/6304295 to your computer and use it in GitHub Desktop.
Save ohjongin/6304295 to your computer and use it in GitHub Desktop.
InputMethodManager imm = (InputMethodManager) getActivity().getSystemService(Context.INPUT_METHOD_SERVICE);
if (imm.isAcceptingText()) {
writeToLog("Software Keyboard was shown");
} else {
writeToLog("Software Keyboard was not shown");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment