Fix logic to show suggestions
Bug: 15531465 Change-Id: Ic7fe5743ad3767cdaed699e5e2d1ebcaa75e22c2
This commit is contained in:
parent
6b655de1a6
commit
6a96c508fd
2 changed files with 13 additions and 6 deletions
|
@ -1336,9 +1336,12 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
|
||||||
final SettingsValues currentSettingsValues = mSettings.getCurrent();
|
final SettingsValues currentSettingsValues = mSettings.getCurrent();
|
||||||
final boolean shouldShowImportantNotice =
|
final boolean shouldShowImportantNotice =
|
||||||
ImportantNoticeUtils.shouldShowImportantNotice(this);
|
ImportantNoticeUtils.shouldShowImportantNotice(this);
|
||||||
|
final boolean shouldShowSuggestionCandidates =
|
||||||
|
currentSettingsValues.mInputAttributes.mShouldShowSuggestions
|
||||||
|
&& currentSettingsValues.isCurrentOrientationAllowingSuggestionsPerUserSettings();
|
||||||
final boolean shouldShowSuggestionsStripUnlessPassword = shouldShowImportantNotice
|
final boolean shouldShowSuggestionsStripUnlessPassword = shouldShowImportantNotice
|
||||||
|| currentSettingsValues.mShowsVoiceInputKey
|
|| currentSettingsValues.mShowsVoiceInputKey
|
||||||
|| currentSettingsValues.isSuggestionsRequested()
|
|| shouldShowSuggestionCandidates
|
||||||
|| currentSettingsValues.isApplicationSpecifiedCompletionsOn();
|
|| currentSettingsValues.isApplicationSpecifiedCompletionsOn();
|
||||||
final boolean shouldShowSuggestionsStrip = shouldShowSuggestionsStripUnlessPassword
|
final boolean shouldShowSuggestionsStrip = shouldShowSuggestionsStripUnlessPassword
|
||||||
&& !currentSettingsValues.mInputAttributes.mIsPasswordField;
|
&& !currentSettingsValues.mInputAttributes.mIsPasswordField;
|
||||||
|
@ -1353,14 +1356,16 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
|
||||||
final boolean noSuggestionsToShow = (SuggestedWords.EMPTY == suggestedWords)
|
final boolean noSuggestionsToShow = (SuggestedWords.EMPTY == suggestedWords)
|
||||||
|| suggestedWords.isPunctuationSuggestions()
|
|| suggestedWords.isPunctuationSuggestions()
|
||||||
|| isEmptyApplicationSpecifiedCompletions;
|
|| isEmptyApplicationSpecifiedCompletions;
|
||||||
final boolean isShowingImportantNotice;
|
|
||||||
if (shouldShowImportantNotice && noSuggestionsToShow) {
|
if (shouldShowImportantNotice && noSuggestionsToShow) {
|
||||||
isShowingImportantNotice = mSuggestionStripView.maybeShowImportantNoticeTitle();
|
if (mSuggestionStripView.maybeShowImportantNoticeTitle()) {
|
||||||
} else {
|
return;
|
||||||
isShowingImportantNotice = false;
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (currentSettingsValues.isSuggestionsRequested() && !isShowingImportantNotice) {
|
if (currentSettingsValues.isCurrentOrientationAllowingSuggestionsPerUserSettings()
|
||||||
|
// We should clear suggestions if there is no suggestion to show.
|
||||||
|
|| noSuggestionsToShow
|
||||||
|
|| currentSettingsValues.isApplicationSpecifiedCompletionsOn()) {
|
||||||
mSuggestionStripView.setSuggestions(suggestedWords,
|
mSuggestionStripView.setSuggestions(suggestedWords,
|
||||||
SubtypeLocaleUtils.isRtlLanguage(mSubtypeSwitcher.getCurrentSubtype()));
|
SubtypeLocaleUtils.isRtlLanguage(mSubtypeSwitcher.getCurrentSubtype()));
|
||||||
}
|
}
|
||||||
|
|
|
@ -85,6 +85,7 @@ public final class SettingsValues {
|
||||||
public final int mKeyPreviewPopupDismissDelay;
|
public final int mKeyPreviewPopupDismissDelay;
|
||||||
private final boolean mAutoCorrectEnabled;
|
private final boolean mAutoCorrectEnabled;
|
||||||
public final float mAutoCorrectionThreshold;
|
public final float mAutoCorrectionThreshold;
|
||||||
|
// TODO: Rename this to mAutoCorrectionEnabledPerUserSettings.
|
||||||
public final boolean mAutoCorrectionEnabled;
|
public final boolean mAutoCorrectionEnabled;
|
||||||
public final int mSuggestionVisibility;
|
public final int mSuggestionVisibility;
|
||||||
public final int mDisplayOrientation;
|
public final int mDisplayOrientation;
|
||||||
|
@ -193,6 +194,7 @@ public final class SettingsValues {
|
||||||
return mInputAttributes.mApplicationSpecifiedCompletionOn;
|
return mInputAttributes.mApplicationSpecifiedCompletionOn;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO: Rename this to needsToLookupSuggestions().
|
||||||
public boolean isSuggestionsRequested() {
|
public boolean isSuggestionsRequested() {
|
||||||
return mInputAttributes.mShouldShowSuggestions
|
return mInputAttributes.mShouldShowSuggestions
|
||||||
&& (mAutoCorrectionEnabled
|
&& (mAutoCorrectionEnabled
|
||||||
|
|
Loading…
Reference in a new issue