Merge "Start full screen mode on first tap when HW keyborad is connected." into nyc-dev

main
Keisuke Kuroyanagi 2016-03-16 06:33:08 +00:00 committed by Android (Google) Code Review
commit c29921fe7c
1 changed files with 1 additions and 1 deletions

View File

@ -716,7 +716,7 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
private boolean isImeSuppressedByHardwareKeyboard() {
final KeyboardSwitcher switcher = KeyboardSwitcher.getInstance();
return switcher.isImeSuppressedByHardwareKeyboard(
return !onEvaluateInputViewShown() && switcher.isImeSuppressedByHardwareKeyboard(
mSettings.getCurrent(), switcher.getKeyboardSwitchState());
}