am c983da89: am b5e00d58: Fix NPE in isCandidateStripVisible()

* commit 'c983da89497e346667f2adb98c8bdb0947c38e43':
  Fix NPE in isCandidateStripVisible()
main
Ken Wakasa 2011-01-26 08:41:38 -08:00 committed by Android Git Automerger
commit eae634030c
1 changed files with 2 additions and 0 deletions

View File

@ -1452,6 +1452,8 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
}
private boolean isCandidateStripVisible() {
if (mCandidateView == null)
return false;
if (mCandidateView.isShowingAddToDictionaryHint() || TextEntryState.isCorrecting())
return true;
if (!isShowingSuggestionsStrip())