They say pain is the only true catalyst for change and it was this pain that drove me to finally find the answer. I found that the following adb command will tell you whether or not the keyboard is open:
adb shell dumpsys input_method | grep
mInputShown
After running this command you may find that the information displayed is more than what you need. So how do i find what Im looking for and use this in a Java function that I can call at any time during a Uiautomator test? Here is the solution:
This file contains 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
public boolean isKeyboardDisplayed() { | |
String checkKeyboardCommand = "dumpsys input_method | grep mInputShown"; | |
try { | |
Process process = Runtime.getRuntime().exec(checkKeyboardCommand); | |
BufferedReader reader = new BufferedReader(new InputStreamReader(process.getInputStream())); | |
int read; | |
char[] buffer = new char[4096]; | |
StringBuffer output = new StringBuffer(); | |
while ((read = reader.read(buffer)) > 0) { | |
output.append(buffer, 0, read); | |
} | |
reader.close(); | |
process.waitFor(); | |
if (output.toString().contains("mInputShown=true")) { | |
return true; | |
} else { | |
return false; | |
} | |
} catch (IOException e) { | |
throw new RuntimeException(e); | |
} catch (InterruptedException e) { | |
throw new RuntimeException(e); | |
} | |
} |
You can use this function to find out if the keyboard is currently open and then close it. This is the best way to make sure you don't attempt to close the keyboard when it isn't open which would result in clicking the Phones BACK button and some potential confusion as to what went wrong
This file contains 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
if(isKeyboardDisplayed()) { | |
System.out.println("Close Keyboard"); | |
getUiDevice().pressBack(); | |
} |
If you disagree, have any questions or would be interested in seeing a tutorial about anything else Android or Automation related, hit me up on Google+.