am eb00023b: [IL97] Readability improvement

* commit 'eb00023b9b12e3b42bfd080157066a0f0b39f934':
  [IL97] Readability improvement
main
Jean Chalard 2014-01-28 00:24:28 -08:00 committed by Android Git Automerger
commit dbd7915611
1 changed files with 10 additions and 11 deletions

View File

@ -1020,17 +1020,16 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
private void setSuggestionStripShownInternal(final boolean shown,
final boolean needsInputViewShown) {
// TODO: Modify this if we support suggestions with hard keyboard
if (onEvaluateInputViewShown() && mSuggestionStripView != null) {
if (!onEvaluateInputViewShown() || null == mSuggestionStripView) {
return;
}
final boolean inputViewShown = mKeyboardSwitcher.isShowingMainKeyboardOrEmojiPalettes();
final boolean shouldShowSuggestions = shown
&& (needsInputViewShown ? inputViewShown : true);
if (isFullscreenMode()) {
mSuggestionStripView.setVisibility(
shouldShowSuggestions ? View.VISIBLE : View.GONE);
if (shouldShowSuggestions) {
mSuggestionStripView.setVisibility(View.VISIBLE);
} else {
mSuggestionStripView.setVisibility(
shouldShowSuggestions ? View.VISIBLE : View.INVISIBLE);
}
mSuggestionStripView.setVisibility(isFullscreenMode() ? View.GONE : View.INVISIBLE);
}
}