Merge "Fix possible NPE in KeyboardSwitcher"

main
Satoshi Kataoka 2013-09-27 16:52:31 +00:00 committed by Android (Google) Code Review
commit 4dc2b9131f
1 changed files with 1 additions and 1 deletions

View File

@ -315,7 +315,7 @@ public final class KeyboardSwitcher implements KeyboardState.SwitchActions {
} }
public boolean isShowingEmojiKeyboard() { public boolean isShowingEmojiKeyboard() {
return mEmojiKeyboardView.getVisibility() == View.VISIBLE; return mEmojiKeyboardView != null && mEmojiKeyboardView.getVisibility() == View.VISIBLE;
} }
public boolean isShowingMoreKeysPanel() { public boolean isShowingMoreKeysPanel() {