Fix possible NPE in KeyboardSwitcher
Bug: 10964306 Change-Id: Ibcea76da746f6cac92c8d91425d25d04ade62af0
This commit is contained in:
parent
5f8eba02d0
commit
adbb979b56
1 changed files with 1 additions and 1 deletions
|
@ -315,7 +315,7 @@ public final class KeyboardSwitcher implements KeyboardState.SwitchActions {
|
|||
}
|
||||
|
||||
public boolean isShowingEmojiKeyboard() {
|
||||
return mEmojiKeyboardView.getVisibility() == View.VISIBLE;
|
||||
return mEmojiKeyboardView != null && mEmojiKeyboardView.getVisibility() == View.VISIBLE;
|
||||
}
|
||||
|
||||
public boolean isShowingMoreKeysPanel() {
|
||||
|
|
Loading…
Reference in a new issue