am f41c11a5: Merge "Fix when to show more suggestions dot hint"
* commit 'f41c11a5c0ee1ec56e6f048314e71ec2d5604736': Fix when to show more suggestions dot hintmain
commit
a9ef283c62
|
@ -365,17 +365,21 @@ final class SuggestionStripLayoutHelper {
|
||||||
(PunctuationSuggestions)suggestedWords, stripView);
|
(PunctuationSuggestions)suggestedWords, stripView);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
final boolean shouldShowUiToAcceptTypedWord = Settings.getInstance().getCurrent()
|
||||||
|
.mShouldShowUiToAcceptTypedWord;
|
||||||
|
final int suggestionsCount = suggestedWords.size()
|
||||||
|
- (shouldShowUiToAcceptTypedWord ? /* typed word */ 1 : 0);
|
||||||
final int startIndexOfMoreSuggestions = setupWordViewsAndReturnStartIndexOfMoreSuggestions(
|
final int startIndexOfMoreSuggestions = setupWordViewsAndReturnStartIndexOfMoreSuggestions(
|
||||||
suggestedWords, mSuggestionsCountInStrip);
|
suggestedWords, mSuggestionsCountInStrip);
|
||||||
final TextView centerWordView = mWordViews.get(mCenterPositionInStrip);
|
final TextView centerWordView = mWordViews.get(mCenterPositionInStrip);
|
||||||
final int stripWidth = stripView.getWidth();
|
final int stripWidth = stripView.getWidth();
|
||||||
final int centerWidth = getSuggestionWidth(mCenterPositionInStrip, stripWidth);
|
final int centerWidth = getSuggestionWidth(mCenterPositionInStrip, stripWidth);
|
||||||
if (suggestedWords.size() == 1 || getTextScaleX(centerWordView.getText(), centerWidth,
|
if (suggestionsCount == 1 || getTextScaleX(centerWordView.getText(), centerWidth,
|
||||||
centerWordView.getPaint()) < MIN_TEXT_XSCALE) {
|
centerWordView.getPaint()) < MIN_TEXT_XSCALE) {
|
||||||
// Layout only the most relevant suggested word at the center of the suggestion strip
|
// Layout only the most relevant suggested word at the center of the suggestion strip
|
||||||
// by consolidating all slots in the strip.
|
// by consolidating all slots in the strip.
|
||||||
final int countInStrip = 1;
|
final int countInStrip = 1;
|
||||||
mMoreSuggestionsAvailable = (suggestedWords.size() > countInStrip);
|
mMoreSuggestionsAvailable = (suggestionsCount > countInStrip);
|
||||||
layoutWord(mCenterPositionInStrip, stripWidth - mPadding);
|
layoutWord(mCenterPositionInStrip, stripWidth - mPadding);
|
||||||
stripView.addView(centerWordView);
|
stripView.addView(centerWordView);
|
||||||
setLayoutWeight(centerWordView, 1.0f, ViewGroup.LayoutParams.MATCH_PARENT);
|
setLayoutWeight(centerWordView, 1.0f, ViewGroup.LayoutParams.MATCH_PARENT);
|
||||||
|
@ -387,7 +391,7 @@ final class SuggestionStripLayoutHelper {
|
||||||
}
|
}
|
||||||
|
|
||||||
final int countInStrip = mSuggestionsCountInStrip;
|
final int countInStrip = mSuggestionsCountInStrip;
|
||||||
mMoreSuggestionsAvailable = (suggestedWords.size() > countInStrip);
|
mMoreSuggestionsAvailable = (suggestionsCount > countInStrip);
|
||||||
int x = 0;
|
int x = 0;
|
||||||
for (int positionInStrip = 0; positionInStrip < countInStrip; positionInStrip++) {
|
for (int positionInStrip = 0; positionInStrip < countInStrip; positionInStrip++) {
|
||||||
if (positionInStrip != 0) {
|
if (positionInStrip != 0) {
|
||||||
|
|
Loading…
Reference in New Issue