Created
August 22, 2013 07:53
-
-
Save ohjongin/6304295 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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