2013-05-30 10:31:55 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2013 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package com.android.inputmethod.latin.suggestions;
|
|
|
|
|
|
|
|
import android.content.Context;
|
|
|
|
import android.content.res.Resources;
|
|
|
|
import android.content.res.TypedArray;
|
|
|
|
import android.graphics.Bitmap;
|
|
|
|
import android.graphics.Canvas;
|
|
|
|
import android.graphics.Color;
|
|
|
|
import android.graphics.Paint;
|
2013-05-30 14:47:54 +00:00
|
|
|
import android.graphics.Paint.Align;
|
2013-05-30 10:31:55 +00:00
|
|
|
import android.graphics.Rect;
|
|
|
|
import android.graphics.Typeface;
|
|
|
|
import android.graphics.drawable.BitmapDrawable;
|
|
|
|
import android.graphics.drawable.Drawable;
|
2014-01-27 10:04:40 +00:00
|
|
|
import android.support.v4.view.ViewCompat;
|
2013-05-30 10:31:55 +00:00
|
|
|
import android.text.Spannable;
|
|
|
|
import android.text.SpannableString;
|
|
|
|
import android.text.Spanned;
|
|
|
|
import android.text.TextPaint;
|
|
|
|
import android.text.TextUtils;
|
|
|
|
import android.text.style.CharacterStyle;
|
|
|
|
import android.text.style.StyleSpan;
|
|
|
|
import android.text.style.UnderlineSpan;
|
|
|
|
import android.util.AttributeSet;
|
|
|
|
import android.view.Gravity;
|
|
|
|
import android.view.View;
|
2013-05-30 14:47:54 +00:00
|
|
|
import android.view.ViewGroup;
|
2013-05-30 10:31:55 +00:00
|
|
|
import android.widget.LinearLayout;
|
|
|
|
import android.widget.TextView;
|
|
|
|
|
2014-06-19 18:50:37 +00:00
|
|
|
import com.android.inputmethod.accessibility.AccessibilityUtils;
|
2014-08-13 05:52:36 +00:00
|
|
|
import com.android.inputmethod.annotations.UsedForTesting;
|
2014-02-13 09:43:48 +00:00
|
|
|
import com.android.inputmethod.latin.PunctuationSuggestions;
|
2013-05-30 10:31:55 +00:00
|
|
|
import com.android.inputmethod.latin.R;
|
|
|
|
import com.android.inputmethod.latin.SuggestedWords;
|
2014-06-19 06:07:17 +00:00
|
|
|
import com.android.inputmethod.latin.SuggestedWords.SuggestedWordInfo;
|
2014-07-17 01:41:46 +00:00
|
|
|
import com.android.inputmethod.latin.define.DebugFlags;
|
2014-08-13 05:52:36 +00:00
|
|
|
import com.android.inputmethod.latin.settings.Settings;
|
|
|
|
import com.android.inputmethod.latin.settings.SettingsValues;
|
2013-07-18 13:59:26 +00:00
|
|
|
import com.android.inputmethod.latin.utils.AutoCorrectionUtils;
|
2013-06-23 16:11:32 +00:00
|
|
|
import com.android.inputmethod.latin.utils.ResourceUtils;
|
2014-01-30 07:52:29 +00:00
|
|
|
import com.android.inputmethod.latin.utils.SubtypeLocaleUtils;
|
2013-07-05 09:57:07 +00:00
|
|
|
import com.android.inputmethod.latin.utils.ViewLayoutUtils;
|
2013-05-30 10:31:55 +00:00
|
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
|
|
|
|
final class SuggestionStripLayoutHelper {
|
|
|
|
private static final int DEFAULT_SUGGESTIONS_COUNT_IN_STRIP = 3;
|
|
|
|
private static final float DEFAULT_CENTER_SUGGESTION_PERCENTILE = 0.40f;
|
|
|
|
private static final int DEFAULT_MAX_MORE_SUGGESTIONS_ROW = 2;
|
|
|
|
private static final int PUNCTUATIONS_IN_STRIP = 5;
|
|
|
|
private static final float MIN_TEXT_XSCALE = 0.70f;
|
|
|
|
|
|
|
|
public final int mPadding;
|
|
|
|
public final int mDividerWidth;
|
|
|
|
public final int mSuggestionsStripHeight;
|
2014-02-12 06:22:13 +00:00
|
|
|
private final int mSuggestionsCountInStrip;
|
2013-05-30 10:31:55 +00:00
|
|
|
public final int mMoreSuggestionsRowHeight;
|
|
|
|
private int mMaxMoreSuggestionsRow;
|
|
|
|
public final float mMinMoreSuggestionsWidth;
|
|
|
|
public final int mMoreSuggestionsBottomGap;
|
2014-08-13 05:52:36 +00:00
|
|
|
private boolean mMoreSuggestionsAvailable;
|
2013-05-30 10:31:55 +00:00
|
|
|
|
2013-05-30 14:47:54 +00:00
|
|
|
// The index of these {@link ArrayList} is the position in the suggestion strip. The indices
|
|
|
|
// increase towards the right for LTR scripts and the left for RTL scripts, starting with 0.
|
|
|
|
// The position of the most important suggestion is in {@link #mCenterPositionInStrip}
|
2013-05-30 10:44:26 +00:00
|
|
|
private final ArrayList<TextView> mWordViews;
|
|
|
|
private final ArrayList<View> mDividerViews;
|
|
|
|
private final ArrayList<TextView> mDebugInfoViews;
|
2013-05-30 10:31:55 +00:00
|
|
|
|
|
|
|
private final int mColorValidTypedWord;
|
|
|
|
private final int mColorTypedWord;
|
|
|
|
private final int mColorAutoCorrect;
|
|
|
|
private final int mColorSuggested;
|
|
|
|
private final float mAlphaObsoleted;
|
|
|
|
private final float mCenterSuggestionWeight;
|
2013-05-30 10:44:26 +00:00
|
|
|
private final int mCenterPositionInStrip;
|
2013-06-25 06:34:07 +00:00
|
|
|
private final int mTypedWordPositionWhenAutocorrect;
|
2013-05-30 10:31:55 +00:00
|
|
|
private final Drawable mMoreSuggestionsHint;
|
|
|
|
private static final String MORE_SUGGESTIONS_HINT = "\u2026";
|
|
|
|
private static final String LEFTWARDS_ARROW = "\u2190";
|
2014-01-27 10:04:40 +00:00
|
|
|
private static final String RIGHTWARDS_ARROW = "\u2192";
|
2013-05-30 10:31:55 +00:00
|
|
|
|
|
|
|
private static final CharacterStyle BOLD_SPAN = new StyleSpan(Typeface.BOLD);
|
|
|
|
private static final CharacterStyle UNDERLINE_SPAN = new UnderlineSpan();
|
2013-05-30 14:47:54 +00:00
|
|
|
|
2014-02-25 05:52:18 +00:00
|
|
|
private final int mSuggestionStripOptions;
|
2013-05-30 14:47:54 +00:00
|
|
|
// These constants are the flag values of
|
2014-02-25 05:52:18 +00:00
|
|
|
// {@link R.styleable#SuggestionStripView_suggestionStripOptions} attribute.
|
2013-05-30 10:31:55 +00:00
|
|
|
private static final int AUTO_CORRECT_BOLD = 0x01;
|
|
|
|
private static final int AUTO_CORRECT_UNDERLINE = 0x02;
|
|
|
|
private static final int VALID_TYPED_WORD_BOLD = 0x04;
|
|
|
|
|
|
|
|
public SuggestionStripLayoutHelper(final Context context, final AttributeSet attrs,
|
2013-05-30 10:44:26 +00:00
|
|
|
final int defStyle, final ArrayList<TextView> wordViews,
|
|
|
|
final ArrayList<View> dividerViews, final ArrayList<TextView> debugInfoViews) {
|
|
|
|
mWordViews = wordViews;
|
|
|
|
mDividerViews = dividerViews;
|
|
|
|
mDebugInfoViews = debugInfoViews;
|
|
|
|
|
|
|
|
final TextView wordView = wordViews.get(0);
|
|
|
|
final View dividerView = dividerViews.get(0);
|
|
|
|
mPadding = wordView.getCompoundPaddingLeft() + wordView.getCompoundPaddingRight();
|
|
|
|
dividerView.measure(
|
|
|
|
ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT);
|
|
|
|
mDividerWidth = dividerView.getMeasuredWidth();
|
|
|
|
|
|
|
|
final Resources res = wordView.getResources();
|
2013-12-13 08:09:16 +00:00
|
|
|
mSuggestionsStripHeight = res.getDimensionPixelSize(
|
|
|
|
R.dimen.config_suggestions_strip_height);
|
2013-05-30 10:31:55 +00:00
|
|
|
|
|
|
|
final TypedArray a = context.obtainStyledAttributes(attrs,
|
2013-08-27 08:32:37 +00:00
|
|
|
R.styleable.SuggestionStripView, defStyle, R.style.SuggestionStripView);
|
2014-02-25 05:52:18 +00:00
|
|
|
mSuggestionStripOptions = a.getInt(
|
|
|
|
R.styleable.SuggestionStripView_suggestionStripOptions, 0);
|
2013-05-30 10:31:55 +00:00
|
|
|
mAlphaObsoleted = ResourceUtils.getFraction(a,
|
2013-08-21 03:44:30 +00:00
|
|
|
R.styleable.SuggestionStripView_alphaObsoleted, 1.0f);
|
|
|
|
mColorValidTypedWord = a.getColor(R.styleable.SuggestionStripView_colorValidTypedWord, 0);
|
|
|
|
mColorTypedWord = a.getColor(R.styleable.SuggestionStripView_colorTypedWord, 0);
|
|
|
|
mColorAutoCorrect = a.getColor(R.styleable.SuggestionStripView_colorAutoCorrect, 0);
|
|
|
|
mColorSuggested = a.getColor(R.styleable.SuggestionStripView_colorSuggested, 0);
|
2013-05-30 10:31:55 +00:00
|
|
|
mSuggestionsCountInStrip = a.getInt(
|
|
|
|
R.styleable.SuggestionStripView_suggestionsCountInStrip,
|
|
|
|
DEFAULT_SUGGESTIONS_COUNT_IN_STRIP);
|
|
|
|
mCenterSuggestionWeight = ResourceUtils.getFraction(a,
|
|
|
|
R.styleable.SuggestionStripView_centerSuggestionPercentile,
|
|
|
|
DEFAULT_CENTER_SUGGESTION_PERCENTILE);
|
|
|
|
mMaxMoreSuggestionsRow = a.getInt(
|
|
|
|
R.styleable.SuggestionStripView_maxMoreSuggestionsRow,
|
|
|
|
DEFAULT_MAX_MORE_SUGGESTIONS_ROW);
|
|
|
|
mMinMoreSuggestionsWidth = ResourceUtils.getFraction(a,
|
|
|
|
R.styleable.SuggestionStripView_minMoreSuggestionsWidth, 1.0f);
|
|
|
|
a.recycle();
|
|
|
|
|
|
|
|
mMoreSuggestionsHint = getMoreSuggestionsHint(res,
|
2013-12-13 08:09:16 +00:00
|
|
|
res.getDimension(R.dimen.config_more_suggestions_hint_text_size),
|
|
|
|
mColorAutoCorrect);
|
2013-05-30 10:44:26 +00:00
|
|
|
mCenterPositionInStrip = mSuggestionsCountInStrip / 2;
|
2013-06-25 06:34:07 +00:00
|
|
|
// Assuming there are at least three suggestions. Also, note that the suggestions are
|
|
|
|
// laid out according to script direction, so this is left of the center for LTR scripts
|
|
|
|
// and right of the center for RTL scripts.
|
|
|
|
mTypedWordPositionWhenAutocorrect = mCenterPositionInStrip - 1;
|
2013-05-30 10:31:55 +00:00
|
|
|
mMoreSuggestionsBottomGap = res.getDimensionPixelOffset(
|
2013-12-13 08:09:16 +00:00
|
|
|
R.dimen.config_more_suggestions_bottom_gap);
|
|
|
|
mMoreSuggestionsRowHeight = res.getDimensionPixelSize(
|
|
|
|
R.dimen.config_more_suggestions_row_height);
|
2013-05-30 10:31:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public int getMaxMoreSuggestionsRow() {
|
|
|
|
return mMaxMoreSuggestionsRow;
|
|
|
|
}
|
|
|
|
|
2013-08-30 07:50:37 +00:00
|
|
|
private int getMoreSuggestionsHeight() {
|
|
|
|
return mMaxMoreSuggestionsRow * mMoreSuggestionsRowHeight + mMoreSuggestionsBottomGap;
|
|
|
|
}
|
|
|
|
|
2014-08-16 03:28:13 +00:00
|
|
|
public void setMoreSuggestionsHeight(final int remainingHeight) {
|
2013-08-30 07:50:37 +00:00
|
|
|
final int currentHeight = getMoreSuggestionsHeight();
|
|
|
|
if (currentHeight <= remainingHeight) {
|
2014-08-16 03:28:13 +00:00
|
|
|
return;
|
2013-08-30 07:50:37 +00:00
|
|
|
}
|
|
|
|
|
2013-05-30 10:31:55 +00:00
|
|
|
mMaxMoreSuggestionsRow = (remainingHeight - mMoreSuggestionsBottomGap)
|
|
|
|
/ mMoreSuggestionsRowHeight;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static Drawable getMoreSuggestionsHint(final Resources res, final float textSize,
|
|
|
|
final int color) {
|
|
|
|
final Paint paint = new Paint();
|
|
|
|
paint.setAntiAlias(true);
|
|
|
|
paint.setTextAlign(Align.CENTER);
|
|
|
|
paint.setTextSize(textSize);
|
|
|
|
paint.setColor(color);
|
|
|
|
final Rect bounds = new Rect();
|
|
|
|
paint.getTextBounds(MORE_SUGGESTIONS_HINT, 0, MORE_SUGGESTIONS_HINT.length(), bounds);
|
|
|
|
final int width = Math.round(bounds.width() + 0.5f);
|
|
|
|
final int height = Math.round(bounds.height() + 0.5f);
|
|
|
|
final Bitmap buffer = Bitmap.createBitmap(width, (height * 3 / 2), Bitmap.Config.ARGB_8888);
|
|
|
|
final Canvas canvas = new Canvas(buffer);
|
|
|
|
canvas.drawText(MORE_SUGGESTIONS_HINT, width / 2, height, paint);
|
|
|
|
return new BitmapDrawable(res, buffer);
|
|
|
|
}
|
|
|
|
|
2013-05-30 14:47:54 +00:00
|
|
|
private CharSequence getStyledSuggestedWord(final SuggestedWords suggestedWords,
|
2013-05-30 10:31:55 +00:00
|
|
|
final int indexInSuggestedWords) {
|
2013-06-03 06:35:49 +00:00
|
|
|
if (indexInSuggestedWords >= suggestedWords.size()) {
|
|
|
|
return null;
|
|
|
|
}
|
2014-02-13 09:43:48 +00:00
|
|
|
final String word = suggestedWords.getLabel(indexInSuggestedWords);
|
2014-02-25 05:52:18 +00:00
|
|
|
// TODO: don't use the index to decide whether this is the auto-correction/typed word, as
|
|
|
|
// this is brittle
|
|
|
|
final boolean isAutoCorrection = suggestedWords.mWillAutoCorrect
|
|
|
|
&& indexInSuggestedWords == SuggestedWords.INDEX_OF_AUTO_CORRECTION;
|
|
|
|
final boolean isTypedWordValid = suggestedWords.mTypedWordValid
|
|
|
|
&& indexInSuggestedWords == SuggestedWords.INDEX_OF_TYPED_WORD;
|
|
|
|
if (!isAutoCorrection && !isTypedWordValid) {
|
2013-05-30 10:31:55 +00:00
|
|
|
return word;
|
2013-05-30 10:44:26 +00:00
|
|
|
}
|
2013-05-30 10:31:55 +00:00
|
|
|
|
|
|
|
final int len = word.length();
|
|
|
|
final Spannable spannedWord = new SpannableString(word);
|
2014-02-25 05:52:18 +00:00
|
|
|
final int options = mSuggestionStripOptions;
|
|
|
|
if ((isAutoCorrection && (options & AUTO_CORRECT_BOLD) != 0)
|
|
|
|
|| (isTypedWordValid && (options & VALID_TYPED_WORD_BOLD) != 0)) {
|
2013-05-30 10:31:55 +00:00
|
|
|
spannedWord.setSpan(BOLD_SPAN, 0, len, Spanned.SPAN_INCLUSIVE_EXCLUSIVE);
|
|
|
|
}
|
2014-02-25 05:52:18 +00:00
|
|
|
if (isAutoCorrection && (options & AUTO_CORRECT_UNDERLINE) != 0) {
|
2013-05-30 10:31:55 +00:00
|
|
|
spannedWord.setSpan(UNDERLINE_SPAN, 0, len, Spanned.SPAN_INCLUSIVE_EXCLUSIVE);
|
|
|
|
}
|
|
|
|
return spannedWord;
|
|
|
|
}
|
|
|
|
|
2014-08-13 05:52:36 +00:00
|
|
|
/**
|
|
|
|
* Convert an index of {@link SuggestedWords} to position in the suggestion strip.
|
|
|
|
* @param indexInSuggestedWords the index of {@link SuggestedWords}.
|
|
|
|
* @param suggestedWords the suggested words list
|
|
|
|
* @return Non-negative integer of the position in the suggestion strip.
|
|
|
|
* Negative integer if the word of the index shouldn't be shown on the suggestion strip.
|
|
|
|
*/
|
2013-06-25 06:34:07 +00:00
|
|
|
private int getPositionInSuggestionStrip(final int indexInSuggestedWords,
|
2013-05-30 10:31:55 +00:00
|
|
|
final SuggestedWords suggestedWords) {
|
2014-08-13 05:52:36 +00:00
|
|
|
final SettingsValues settingsValues = Settings.getInstance().getCurrent();
|
|
|
|
final boolean shouldOmitTypedWord = shouldOmitTypedWord(suggestedWords.mInputStyle,
|
|
|
|
settingsValues.mGestureFloatingPreviewTextEnabled,
|
|
|
|
settingsValues.mShouldShowUiToAcceptTypedWord);
|
|
|
|
return getPositionInSuggestionStrip(indexInSuggestedWords, suggestedWords.mWillAutoCorrect,
|
|
|
|
settingsValues.mShouldShowUiToAcceptTypedWord && shouldOmitTypedWord,
|
|
|
|
mCenterPositionInStrip, mTypedWordPositionWhenAutocorrect);
|
|
|
|
}
|
|
|
|
|
|
|
|
@UsedForTesting
|
|
|
|
static boolean shouldOmitTypedWord(final int inputStyle,
|
|
|
|
final boolean gestureFloatingPreviewTextEnabled,
|
|
|
|
final boolean shouldShowUiToAcceptTypedWord) {
|
|
|
|
final boolean omitTypedWord = (inputStyle == SuggestedWords.INPUT_STYLE_TYPING)
|
|
|
|
|| (inputStyle == SuggestedWords.INPUT_STYLE_TAIL_BATCH)
|
|
|
|
|| (inputStyle == SuggestedWords.INPUT_STYLE_UPDATE_BATCH
|
|
|
|
&& gestureFloatingPreviewTextEnabled);
|
|
|
|
return shouldShowUiToAcceptTypedWord && omitTypedWord;
|
|
|
|
}
|
|
|
|
|
|
|
|
@UsedForTesting
|
|
|
|
static int getPositionInSuggestionStrip(final int indexInSuggestedWords,
|
|
|
|
final boolean willAutoCorrect, final boolean omitTypedWord,
|
|
|
|
final int centerPositionInStrip, final int typedWordPositionWhenAutoCorrect) {
|
|
|
|
if (omitTypedWord) {
|
|
|
|
if (indexInSuggestedWords == SuggestedWords.INDEX_OF_TYPED_WORD) {
|
|
|
|
// Ignore.
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (indexInSuggestedWords == SuggestedWords.INDEX_OF_AUTO_CORRECTION) {
|
|
|
|
// Center in the suggestion strip.
|
|
|
|
return centerPositionInStrip;
|
|
|
|
}
|
|
|
|
// If neither of those, the order in the suggestion strip is left of the center first
|
|
|
|
// then right of the center, to both edges of the suggestion strip.
|
|
|
|
// For example, center-1, center+1, center-2, center+2, and so on.
|
|
|
|
final int n = indexInSuggestedWords;
|
|
|
|
final int offsetFromCenter = (n % 2) == 0 ? -(n / 2) : (n / 2);
|
|
|
|
final int positionInSuggestionStrip = centerPositionInStrip + offsetFromCenter;
|
|
|
|
return positionInSuggestionStrip;
|
|
|
|
}
|
2013-06-25 06:34:07 +00:00
|
|
|
final int indexToDisplayMostImportantSuggestion;
|
|
|
|
final int indexToDisplaySecondMostImportantSuggestion;
|
2014-08-13 05:52:36 +00:00
|
|
|
if (willAutoCorrect) {
|
2013-06-25 06:34:07 +00:00
|
|
|
indexToDisplayMostImportantSuggestion = SuggestedWords.INDEX_OF_AUTO_CORRECTION;
|
|
|
|
indexToDisplaySecondMostImportantSuggestion = SuggestedWords.INDEX_OF_TYPED_WORD;
|
|
|
|
} else {
|
|
|
|
indexToDisplayMostImportantSuggestion = SuggestedWords.INDEX_OF_TYPED_WORD;
|
|
|
|
indexToDisplaySecondMostImportantSuggestion = SuggestedWords.INDEX_OF_AUTO_CORRECTION;
|
2013-05-30 10:31:55 +00:00
|
|
|
}
|
2013-06-25 06:34:07 +00:00
|
|
|
if (indexInSuggestedWords == indexToDisplayMostImportantSuggestion) {
|
2014-08-13 05:52:36 +00:00
|
|
|
// Center in the suggestion strip.
|
|
|
|
return centerPositionInStrip;
|
2013-05-30 10:44:26 +00:00
|
|
|
}
|
2013-06-25 06:34:07 +00:00
|
|
|
if (indexInSuggestedWords == indexToDisplaySecondMostImportantSuggestion) {
|
2014-08-13 05:52:36 +00:00
|
|
|
// Center-1.
|
|
|
|
return typedWordPositionWhenAutoCorrect;
|
2013-06-25 06:34:07 +00:00
|
|
|
}
|
2014-08-13 05:52:36 +00:00
|
|
|
// If neither of those, the order in the suggestion strip is right of the center first
|
|
|
|
// then left of the center, to both edges of the suggestion strip.
|
|
|
|
// For example, Center+1, center-2, center+2, center-3, and so on.
|
|
|
|
final int n = indexInSuggestedWords + 1;
|
|
|
|
final int offsetFromCenter = (n % 2) == 0 ? -(n / 2) : (n / 2);
|
|
|
|
final int positionInSuggestionStrip = centerPositionInStrip + offsetFromCenter;
|
|
|
|
return positionInSuggestionStrip;
|
2013-05-30 10:31:55 +00:00
|
|
|
}
|
|
|
|
|
2014-02-25 06:49:34 +00:00
|
|
|
private int getSuggestionTextColor(final SuggestedWords suggestedWords,
|
|
|
|
final int indexInSuggestedWords) {
|
2014-02-25 06:35:37 +00:00
|
|
|
// Use identity for strings, not #equals : it's the typed word if it's the same object
|
2014-06-19 06:07:17 +00:00
|
|
|
final boolean isTypedWord = suggestedWords.getInfo(indexInSuggestedWords).isKindOf(
|
|
|
|
SuggestedWordInfo.KIND_TYPED);
|
2013-05-30 10:31:55 +00:00
|
|
|
|
|
|
|
final int color;
|
2014-08-13 05:52:36 +00:00
|
|
|
if (indexInSuggestedWords == SuggestedWords.INDEX_OF_AUTO_CORRECTION
|
|
|
|
&& suggestedWords.mWillAutoCorrect) {
|
2013-05-30 10:31:55 +00:00
|
|
|
color = mColorAutoCorrect;
|
2014-02-25 06:35:37 +00:00
|
|
|
} else if (isTypedWord && suggestedWords.mTypedWordValid) {
|
2013-05-30 10:31:55 +00:00
|
|
|
color = mColorValidTypedWord;
|
2014-02-25 06:30:48 +00:00
|
|
|
} else if (isTypedWord) {
|
2013-05-30 10:31:55 +00:00
|
|
|
color = mColorTypedWord;
|
2014-02-25 06:30:48 +00:00
|
|
|
} else {
|
|
|
|
color = mColorSuggested;
|
2013-05-30 10:31:55 +00:00
|
|
|
}
|
2014-07-17 01:41:46 +00:00
|
|
|
if (DebugFlags.DEBUG_ENABLED && suggestedWords.size() > 1) {
|
2013-05-30 10:31:55 +00:00
|
|
|
// If we auto-correct, then the autocorrection is in slot 0 and the typed word
|
|
|
|
// is in slot 1.
|
2014-08-13 05:52:36 +00:00
|
|
|
if (indexInSuggestedWords == SuggestedWords.INDEX_OF_AUTO_CORRECTION
|
|
|
|
&& suggestedWords.mWillAutoCorrect
|
2013-07-18 13:59:26 +00:00
|
|
|
&& AutoCorrectionUtils.shouldBlockAutoCorrectionBySafetyNet(
|
2014-02-13 09:43:48 +00:00
|
|
|
suggestedWords.getLabel(SuggestedWords.INDEX_OF_AUTO_CORRECTION),
|
|
|
|
suggestedWords.getLabel(SuggestedWords.INDEX_OF_TYPED_WORD))) {
|
2013-05-30 10:31:55 +00:00
|
|
|
return 0xFFFF0000;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-25 06:30:48 +00:00
|
|
|
if (suggestedWords.mIsObsoleteSuggestions && !isTypedWord) {
|
2013-05-30 10:31:55 +00:00
|
|
|
return applyAlpha(color, mAlphaObsoleted);
|
|
|
|
}
|
2013-05-30 10:44:26 +00:00
|
|
|
return color;
|
2013-05-30 10:31:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private static int applyAlpha(final int color, final float alpha) {
|
|
|
|
final int newAlpha = (int)(Color.alpha(color) * alpha);
|
|
|
|
return Color.argb(newAlpha, Color.red(color), Color.green(color), Color.blue(color));
|
|
|
|
}
|
|
|
|
|
2013-05-30 10:44:26 +00:00
|
|
|
private static void addDivider(final ViewGroup stripView, final View dividerView) {
|
|
|
|
stripView.addView(dividerView);
|
2013-05-30 10:31:55 +00:00
|
|
|
final LinearLayout.LayoutParams params =
|
2013-05-30 10:44:26 +00:00
|
|
|
(LinearLayout.LayoutParams)dividerView.getLayoutParams();
|
2013-05-30 10:31:55 +00:00
|
|
|
params.gravity = Gravity.CENTER;
|
|
|
|
}
|
|
|
|
|
2014-02-12 06:22:13 +00:00
|
|
|
/**
|
2014-08-13 05:52:36 +00:00
|
|
|
* Layout suggestions to the suggestions strip. And returns the start index of more
|
|
|
|
* suggestions.
|
2014-02-12 06:22:13 +00:00
|
|
|
*
|
|
|
|
* @param suggestedWords suggestions to be shown in the suggestions strip.
|
|
|
|
* @param stripView the suggestions strip view.
|
|
|
|
* @param placerView the view where the debug info will be placed.
|
2014-08-13 05:52:36 +00:00
|
|
|
* @return the start index of more suggestions.
|
2014-02-12 06:22:13 +00:00
|
|
|
*/
|
2014-08-13 05:52:36 +00:00
|
|
|
public int layoutAndReturnStartIndexOfMoreSuggestions(final SuggestedWords suggestedWords,
|
2014-02-12 06:22:13 +00:00
|
|
|
final ViewGroup stripView, final ViewGroup placerView) {
|
2014-02-13 09:43:48 +00:00
|
|
|
if (suggestedWords.isPunctuationSuggestions()) {
|
2014-08-13 05:52:36 +00:00
|
|
|
return layoutPunctuationsAndReturnStartIndexOfMoreSuggestions(
|
2014-02-13 09:43:48 +00:00
|
|
|
(PunctuationSuggestions)suggestedWords, stripView);
|
2013-05-30 10:31:55 +00:00
|
|
|
}
|
|
|
|
|
2014-08-13 05:52:36 +00:00
|
|
|
final int startIndexOfMoreSuggestions = setupWordViewsAndReturnStartIndexOfMoreSuggestions(
|
|
|
|
suggestedWords, mSuggestionsCountInStrip);
|
2013-05-31 01:20:47 +00:00
|
|
|
final TextView centerWordView = mWordViews.get(mCenterPositionInStrip);
|
2014-05-07 07:19:59 +00:00
|
|
|
final int stripWidth = stripView.getWidth();
|
|
|
|
final int centerWidth = getSuggestionWidth(mCenterPositionInStrip, stripWidth);
|
2014-02-12 06:22:13 +00:00
|
|
|
if (suggestedWords.size() == 1 || getTextScaleX(centerWordView.getText(), centerWidth,
|
|
|
|
centerWordView.getPaint()) < MIN_TEXT_XSCALE) {
|
2013-05-31 01:20:47 +00:00
|
|
|
// Layout only the most relevant suggested word at the center of the suggestion strip
|
|
|
|
// by consolidating all slots in the strip.
|
2014-08-13 05:52:36 +00:00
|
|
|
final int countInStrip = 1;
|
2014-02-12 06:22:13 +00:00
|
|
|
mMoreSuggestionsAvailable = (suggestedWords.size() > countInStrip);
|
2014-05-07 07:19:59 +00:00
|
|
|
layoutWord(mCenterPositionInStrip, stripWidth - mPadding);
|
2013-05-31 01:20:47 +00:00
|
|
|
stripView.addView(centerWordView);
|
|
|
|
setLayoutWeight(centerWordView, 1.0f, ViewGroup.LayoutParams.MATCH_PARENT);
|
|
|
|
if (SuggestionStripView.DBG) {
|
2014-05-07 07:19:59 +00:00
|
|
|
layoutDebugInfo(mCenterPositionInStrip, placerView, stripWidth);
|
2013-05-31 01:20:47 +00:00
|
|
|
}
|
2014-08-13 05:52:36 +00:00
|
|
|
final Integer lastIndex = (Integer)centerWordView.getTag();
|
|
|
|
return (lastIndex == null ? 0 : lastIndex) + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
final int countInStrip = mSuggestionsCountInStrip;
|
|
|
|
mMoreSuggestionsAvailable = (suggestedWords.size() > countInStrip);
|
|
|
|
int x = 0;
|
|
|
|
for (int positionInStrip = 0; positionInStrip < countInStrip; positionInStrip++) {
|
|
|
|
if (positionInStrip != 0) {
|
|
|
|
final View divider = mDividerViews.get(positionInStrip);
|
|
|
|
// Add divider if this isn't the left most suggestion in suggestions strip.
|
|
|
|
addDivider(stripView, divider);
|
|
|
|
x += divider.getMeasuredWidth();
|
|
|
|
}
|
|
|
|
|
|
|
|
final int width = getSuggestionWidth(positionInStrip, stripWidth);
|
|
|
|
final TextView wordView = layoutWord(positionInStrip, width);
|
|
|
|
stripView.addView(wordView);
|
|
|
|
setLayoutWeight(wordView, getSuggestionWeight(positionInStrip),
|
|
|
|
ViewGroup.LayoutParams.MATCH_PARENT);
|
|
|
|
x += wordView.getMeasuredWidth();
|
|
|
|
|
|
|
|
if (SuggestionStripView.DBG) {
|
|
|
|
layoutDebugInfo(positionInStrip, placerView, x);
|
2013-05-30 10:31:55 +00:00
|
|
|
}
|
|
|
|
}
|
2014-08-13 05:52:36 +00:00
|
|
|
return startIndexOfMoreSuggestions;
|
2013-05-30 10:31:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-05-30 14:47:54 +00:00
|
|
|
* Format appropriately the suggested word in {@link #mWordViews} specified by
|
|
|
|
* <code>positionInStrip</code>. When the suggested word doesn't exist, the corresponding
|
|
|
|
* {@link TextView} will be disabled and never respond to user interaction. The suggested word
|
|
|
|
* may be shrunk or ellipsized to fit in the specified width.
|
2013-05-30 10:31:55 +00:00
|
|
|
*
|
2013-05-30 10:44:26 +00:00
|
|
|
* The <code>positionInStrip</code> argument is the index in the suggestion strip. The indices
|
2013-05-30 10:31:55 +00:00
|
|
|
* increase towards the right for LTR scripts and the left for RTL scripts, starting with 0.
|
2013-05-30 14:47:54 +00:00
|
|
|
* The position of the most important suggestion is in {@link #mCenterPositionInStrip}. This
|
2013-05-30 10:31:55 +00:00
|
|
|
* usually doesn't match the index in <code>suggedtedWords</code> -- see
|
2013-06-25 06:34:07 +00:00
|
|
|
* {@link #getPositionInSuggestionStrip(int,SuggestedWords)}.
|
2013-05-30 10:31:55 +00:00
|
|
|
*
|
2013-05-30 14:47:54 +00:00
|
|
|
* @param positionInStrip the position in the suggestion strip.
|
2013-05-30 10:31:55 +00:00
|
|
|
* @param width the maximum width for layout in pixels.
|
|
|
|
* @return the {@link TextView} containing the suggested word appropriately formatted.
|
|
|
|
*/
|
2013-05-30 14:47:54 +00:00
|
|
|
private TextView layoutWord(final int positionInStrip, final int width) {
|
|
|
|
final TextView wordView = mWordViews.get(positionInStrip);
|
|
|
|
final CharSequence word = wordView.getText();
|
2013-05-30 10:44:26 +00:00
|
|
|
if (positionInStrip == mCenterPositionInStrip && mMoreSuggestionsAvailable) {
|
2013-05-30 10:31:55 +00:00
|
|
|
// TODO: This "more suggestions hint" should have a nicely designed icon.
|
2013-05-30 10:44:26 +00:00
|
|
|
wordView.setCompoundDrawablesWithIntrinsicBounds(
|
2013-05-30 10:31:55 +00:00
|
|
|
null, null, null, mMoreSuggestionsHint);
|
|
|
|
// HACK: Align with other TextViews that have no compound drawables.
|
2013-05-30 10:44:26 +00:00
|
|
|
wordView.setCompoundDrawablePadding(-mMoreSuggestionsHint.getIntrinsicHeight());
|
2013-05-30 10:31:55 +00:00
|
|
|
} else {
|
2013-05-30 10:44:26 +00:00
|
|
|
wordView.setCompoundDrawablesWithIntrinsicBounds(null, null, null, null);
|
2013-05-30 10:31:55 +00:00
|
|
|
}
|
2014-06-09 09:18:53 +00:00
|
|
|
// {@link StyleSpan} in a content description may cause an issue of TTS/TalkBack.
|
|
|
|
// Use a simple {@link String} to avoid the issue.
|
|
|
|
wordView.setContentDescription(TextUtils.isEmpty(word) ? null : word.toString());
|
2013-05-30 10:44:26 +00:00
|
|
|
final CharSequence text = getEllipsizedText(word, width, wordView.getPaint());
|
2013-10-10 13:16:17 +00:00
|
|
|
final float scaleX = getTextScaleX(word, width, wordView.getPaint());
|
2013-05-30 10:44:26 +00:00
|
|
|
wordView.setText(text); // TextView.setText() resets text scale x to 1.0.
|
2013-10-10 13:16:17 +00:00
|
|
|
wordView.setTextScaleX(Math.max(scaleX, MIN_TEXT_XSCALE));
|
2014-06-19 18:50:37 +00:00
|
|
|
// A <code>wordView</code> should be disabled when <code>word</code> is empty in order to
|
|
|
|
// make it unclickable.
|
|
|
|
// With accessibility touch exploration on, <code>wordView</code> should be enabled even
|
|
|
|
// when it is empty to avoid announcing as "disabled".
|
|
|
|
wordView.setEnabled(!TextUtils.isEmpty(word)
|
|
|
|
|| AccessibilityUtils.getInstance().isTouchExplorationEnabled());
|
2013-05-30 10:44:26 +00:00
|
|
|
return wordView;
|
2013-05-30 10:31:55 +00:00
|
|
|
}
|
|
|
|
|
2013-05-30 14:47:54 +00:00
|
|
|
private void layoutDebugInfo(final int positionInStrip, final ViewGroup placerView,
|
|
|
|
final int x) {
|
|
|
|
final TextView debugInfoView = mDebugInfoViews.get(positionInStrip);
|
|
|
|
final CharSequence debugInfo = debugInfoView.getText();
|
2013-05-30 10:31:55 +00:00
|
|
|
if (debugInfo == null) {
|
|
|
|
return;
|
|
|
|
}
|
2013-05-30 10:44:26 +00:00
|
|
|
placerView.addView(debugInfoView);
|
|
|
|
debugInfoView.measure(
|
|
|
|
ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
|
|
|
|
final int infoWidth = debugInfoView.getMeasuredWidth();
|
|
|
|
final int y = debugInfoView.getMeasuredHeight();
|
2013-05-30 10:31:55 +00:00
|
|
|
ViewLayoutUtils.placeViewAt(
|
2013-05-30 10:44:26 +00:00
|
|
|
debugInfoView, x - infoWidth, y, infoWidth, debugInfoView.getMeasuredHeight());
|
2013-05-30 10:31:55 +00:00
|
|
|
}
|
|
|
|
|
2013-05-30 10:44:26 +00:00
|
|
|
private int getSuggestionWidth(final int positionInStrip, final int maxWidth) {
|
2013-05-30 10:31:55 +00:00
|
|
|
final int paddings = mPadding * mSuggestionsCountInStrip;
|
|
|
|
final int dividers = mDividerWidth * (mSuggestionsCountInStrip - 1);
|
|
|
|
final int availableWidth = maxWidth - paddings - dividers;
|
2013-05-30 10:44:26 +00:00
|
|
|
return (int)(availableWidth * getSuggestionWeight(positionInStrip));
|
2013-05-30 10:31:55 +00:00
|
|
|
}
|
|
|
|
|
2013-05-30 10:44:26 +00:00
|
|
|
private float getSuggestionWeight(final int positionInStrip) {
|
|
|
|
if (positionInStrip == mCenterPositionInStrip) {
|
2013-05-30 10:31:55 +00:00
|
|
|
return mCenterSuggestionWeight;
|
|
|
|
}
|
2013-05-30 10:44:26 +00:00
|
|
|
// TODO: Revisit this for cases of 5 or more suggestions
|
|
|
|
return (1.0f - mCenterSuggestionWeight) / (mSuggestionsCountInStrip - 1);
|
2013-05-30 10:31:55 +00:00
|
|
|
}
|
|
|
|
|
2014-08-13 05:52:36 +00:00
|
|
|
private int setupWordViewsAndReturnStartIndexOfMoreSuggestions(
|
|
|
|
final SuggestedWords suggestedWords, final int maxSuggestionInStrip) {
|
2013-06-25 06:34:07 +00:00
|
|
|
// Clear all suggestions first
|
2014-08-13 05:52:36 +00:00
|
|
|
for (int positionInStrip = 0; positionInStrip < maxSuggestionInStrip; ++positionInStrip) {
|
2014-05-13 06:53:01 +00:00
|
|
|
final TextView wordView = mWordViews.get(positionInStrip);
|
|
|
|
wordView.setText(null);
|
|
|
|
wordView.setTag(null);
|
2013-06-25 06:34:07 +00:00
|
|
|
// Make this inactive for touches in {@link #layoutWord(int,int)}.
|
|
|
|
if (SuggestionStripView.DBG) {
|
|
|
|
mDebugInfoViews.get(positionInStrip).setText(null);
|
|
|
|
}
|
|
|
|
}
|
2014-08-13 05:52:36 +00:00
|
|
|
int count = 0;
|
|
|
|
int indexInSuggestedWords;
|
|
|
|
for (indexInSuggestedWords = 0; indexInSuggestedWords < suggestedWords.size()
|
|
|
|
&& count < maxSuggestionInStrip; indexInSuggestedWords++) {
|
2013-06-25 06:34:07 +00:00
|
|
|
final int positionInStrip =
|
|
|
|
getPositionInSuggestionStrip(indexInSuggestedWords, suggestedWords);
|
2014-08-13 05:52:36 +00:00
|
|
|
if (positionInStrip < 0) {
|
|
|
|
continue;
|
|
|
|
}
|
2013-05-30 14:47:54 +00:00
|
|
|
final TextView wordView = mWordViews.get(positionInStrip);
|
|
|
|
// {@link TextView#getTag()} is used to get the index in suggestedWords at
|
|
|
|
// {@link SuggestionStripView#onClick(View)}.
|
|
|
|
wordView.setTag(indexInSuggestedWords);
|
|
|
|
wordView.setText(getStyledSuggestedWord(suggestedWords, indexInSuggestedWords));
|
2014-02-25 06:49:34 +00:00
|
|
|
wordView.setTextColor(getSuggestionTextColor(suggestedWords, indexInSuggestedWords));
|
2013-05-30 14:47:54 +00:00
|
|
|
if (SuggestionStripView.DBG) {
|
|
|
|
mDebugInfoViews.get(positionInStrip).setText(
|
2013-07-05 09:23:22 +00:00
|
|
|
suggestedWords.getDebugString(indexInSuggestedWords));
|
2013-05-30 14:47:54 +00:00
|
|
|
}
|
2014-08-13 05:52:36 +00:00
|
|
|
count++;
|
2013-05-30 10:31:55 +00:00
|
|
|
}
|
2014-08-13 05:52:36 +00:00
|
|
|
return indexInSuggestedWords;
|
2013-05-30 10:31:55 +00:00
|
|
|
}
|
|
|
|
|
2014-08-13 05:52:36 +00:00
|
|
|
private int layoutPunctuationsAndReturnStartIndexOfMoreSuggestions(
|
2014-02-13 09:43:48 +00:00
|
|
|
final PunctuationSuggestions punctuationSuggestions, final ViewGroup stripView) {
|
|
|
|
final int countInStrip = Math.min(punctuationSuggestions.size(), PUNCTUATIONS_IN_STRIP);
|
2013-05-30 14:47:54 +00:00
|
|
|
for (int positionInStrip = 0; positionInStrip < countInStrip; positionInStrip++) {
|
|
|
|
if (positionInStrip != 0) {
|
2013-05-30 10:31:55 +00:00
|
|
|
// Add divider if this isn't the left most suggestion in suggestions strip.
|
2013-05-30 14:47:54 +00:00
|
|
|
addDivider(stripView, mDividerViews.get(positionInStrip));
|
2013-05-30 10:31:55 +00:00
|
|
|
}
|
|
|
|
|
2013-05-30 14:47:54 +00:00
|
|
|
final TextView wordView = mWordViews.get(positionInStrip);
|
2014-06-09 09:18:53 +00:00
|
|
|
final String punctuation = punctuationSuggestions.getLabel(positionInStrip);
|
2013-06-21 01:44:14 +00:00
|
|
|
// {@link TextView#getTag()} is used to get the index in suggestedWords at
|
|
|
|
// {@link SuggestionStripView#onClick(View)}.
|
|
|
|
wordView.setTag(positionInStrip);
|
2014-06-09 09:18:53 +00:00
|
|
|
wordView.setText(punctuation);
|
|
|
|
wordView.setContentDescription(punctuation);
|
2013-05-30 14:47:54 +00:00
|
|
|
wordView.setTextScaleX(1.0f);
|
|
|
|
wordView.setCompoundDrawables(null, null, null, null);
|
2014-06-09 09:18:53 +00:00
|
|
|
wordView.setTextColor(mColorAutoCorrect);
|
2013-05-30 14:47:54 +00:00
|
|
|
stripView.addView(wordView);
|
|
|
|
setLayoutWeight(wordView, 1.0f, mSuggestionsStripHeight);
|
2013-05-30 10:31:55 +00:00
|
|
|
}
|
2014-02-13 09:43:48 +00:00
|
|
|
mMoreSuggestionsAvailable = (punctuationSuggestions.size() > countInStrip);
|
2014-02-12 06:22:13 +00:00
|
|
|
return countInStrip;
|
2013-05-30 10:31:55 +00:00
|
|
|
}
|
|
|
|
|
2014-05-07 07:19:59 +00:00
|
|
|
public void layoutAddToDictionaryHint(final String word, final ViewGroup addToDictionaryStrip) {
|
2014-08-13 05:52:36 +00:00
|
|
|
final boolean shouldShowUiToAcceptTypedWord = Settings.getInstance().getCurrent()
|
|
|
|
.mShouldShowUiToAcceptTypedWord;
|
2014-05-07 07:19:59 +00:00
|
|
|
final int stripWidth = addToDictionaryStrip.getWidth();
|
2014-08-13 05:52:36 +00:00
|
|
|
final int width = shouldShowUiToAcceptTypedWord ? stripWidth
|
|
|
|
: stripWidth - mDividerWidth - mPadding * 2;
|
2013-05-30 10:31:55 +00:00
|
|
|
|
2014-01-27 05:50:02 +00:00
|
|
|
final TextView wordView = (TextView)addToDictionaryStrip.findViewById(R.id.word_to_save);
|
2013-05-30 10:31:55 +00:00
|
|
|
wordView.setTextColor(mColorTypedWord);
|
|
|
|
final int wordWidth = (int)(width * mCenterSuggestionWeight);
|
2014-01-27 05:50:02 +00:00
|
|
|
final CharSequence wordToSave = getEllipsizedText(word, wordWidth, wordView.getPaint());
|
2013-05-30 10:31:55 +00:00
|
|
|
final float wordScaleX = wordView.getTextScaleX();
|
2014-01-27 05:50:02 +00:00
|
|
|
wordView.setText(wordToSave);
|
2013-05-30 10:31:55 +00:00
|
|
|
wordView.setTextScaleX(wordScaleX);
|
|
|
|
setLayoutWeight(wordView, mCenterSuggestionWeight, ViewGroup.LayoutParams.MATCH_PARENT);
|
2014-08-13 05:52:36 +00:00
|
|
|
final int wordVisibility = shouldShowUiToAcceptTypedWord ? View.GONE : View.VISIBLE;
|
|
|
|
wordView.setVisibility(wordVisibility);
|
|
|
|
addToDictionaryStrip.findViewById(R.id.word_to_save_divider).setVisibility(wordVisibility);
|
2013-05-30 10:31:55 +00:00
|
|
|
|
2014-08-13 05:52:36 +00:00
|
|
|
final Resources res = addToDictionaryStrip.getResources();
|
|
|
|
final CharSequence hintText;
|
|
|
|
final int hintWidth;
|
|
|
|
final float hintWeight;
|
2014-01-27 05:50:02 +00:00
|
|
|
final TextView hintView = (TextView)addToDictionaryStrip.findViewById(
|
|
|
|
R.id.hint_add_to_dictionary);
|
2014-08-13 05:52:36 +00:00
|
|
|
if (shouldShowUiToAcceptTypedWord) {
|
|
|
|
hintText = res.getText(R.string.hint_add_to_dictionary_without_word);
|
|
|
|
hintWidth = width;
|
|
|
|
hintWeight = 1.0f;
|
|
|
|
hintView.setGravity(Gravity.CENTER);
|
|
|
|
} else {
|
|
|
|
final boolean isRtlLanguage = (ViewCompat.getLayoutDirection(addToDictionaryStrip)
|
|
|
|
== ViewCompat.LAYOUT_DIRECTION_RTL);
|
|
|
|
final String arrow = isRtlLanguage ? RIGHTWARDS_ARROW : LEFTWARDS_ARROW;
|
|
|
|
final boolean isRtlSystem = SubtypeLocaleUtils.isRtlLanguage(
|
|
|
|
res.getConfiguration().locale);
|
|
|
|
final CharSequence hint = res.getText(R.string.hint_add_to_dictionary);
|
|
|
|
hintText = (isRtlLanguage == isRtlSystem) ? (arrow + hint) : (hint + arrow);
|
|
|
|
hintWidth = width - wordWidth;
|
|
|
|
hintWeight = 1.0f - mCenterSuggestionWeight;
|
|
|
|
hintView.setGravity(Gravity.CENTER_VERTICAL | Gravity.START);
|
|
|
|
}
|
2013-05-30 10:31:55 +00:00
|
|
|
hintView.setTextColor(mColorAutoCorrect);
|
2014-08-13 05:52:36 +00:00
|
|
|
final float hintScaleX = getTextScaleX(hintText, hintWidth, hintView.getPaint());
|
|
|
|
hintView.setText(hintText);
|
2013-05-30 10:31:55 +00:00
|
|
|
hintView.setTextScaleX(hintScaleX);
|
2014-08-13 05:52:36 +00:00
|
|
|
setLayoutWeight(hintView, hintWeight, ViewGroup.LayoutParams.MATCH_PARENT);
|
2013-05-30 10:31:55 +00:00
|
|
|
}
|
|
|
|
|
2014-03-20 02:06:55 +00:00
|
|
|
public void layoutImportantNotice(final View importantNoticeStrip,
|
2014-02-19 04:17:36 +00:00
|
|
|
final String importantNoticeTitle) {
|
2014-01-28 07:19:29 +00:00
|
|
|
final TextView titleView = (TextView)importantNoticeStrip.findViewById(
|
|
|
|
R.id.important_notice_title);
|
2014-03-14 03:05:14 +00:00
|
|
|
final int width = titleView.getWidth() - titleView.getPaddingLeft()
|
|
|
|
- titleView.getPaddingRight();
|
2014-01-28 07:19:29 +00:00
|
|
|
titleView.setTextColor(mColorAutoCorrect);
|
2014-02-19 04:17:36 +00:00
|
|
|
titleView.setText(importantNoticeTitle);
|
2014-01-28 07:19:29 +00:00
|
|
|
titleView.setTextScaleX(1.0f); // Reset textScaleX.
|
2014-03-20 02:06:55 +00:00
|
|
|
final float titleScaleX = getTextScaleX(importantNoticeTitle, width, titleView.getPaint());
|
2014-02-03 02:49:34 +00:00
|
|
|
titleView.setTextScaleX(titleScaleX);
|
2014-01-28 07:19:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void setLayoutWeight(final View v, final float weight, final int height) {
|
2013-05-30 10:31:55 +00:00
|
|
|
final ViewGroup.LayoutParams lp = v.getLayoutParams();
|
|
|
|
if (lp instanceof LinearLayout.LayoutParams) {
|
|
|
|
final LinearLayout.LayoutParams llp = (LinearLayout.LayoutParams)lp;
|
|
|
|
llp.weight = weight;
|
|
|
|
llp.width = 0;
|
|
|
|
llp.height = height;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private static float getTextScaleX(final CharSequence text, final int maxWidth,
|
|
|
|
final TextPaint paint) {
|
|
|
|
paint.setTextScaleX(1.0f);
|
|
|
|
final int width = getTextWidth(text, paint);
|
2014-02-03 02:49:34 +00:00
|
|
|
if (width <= maxWidth || maxWidth <= 0) {
|
2013-05-30 10:31:55 +00:00
|
|
|
return 1.0f;
|
|
|
|
}
|
|
|
|
return maxWidth / (float)width;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static CharSequence getEllipsizedText(final CharSequence text, final int maxWidth,
|
|
|
|
final TextPaint paint) {
|
2013-05-30 10:44:26 +00:00
|
|
|
if (text == null) {
|
|
|
|
return null;
|
2013-05-30 10:31:55 +00:00
|
|
|
}
|
2013-05-30 10:44:26 +00:00
|
|
|
final float scaleX = getTextScaleX(text, maxWidth, paint);
|
2013-05-30 10:31:55 +00:00
|
|
|
if (scaleX >= MIN_TEXT_XSCALE) {
|
|
|
|
paint.setTextScaleX(scaleX);
|
|
|
|
return text;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Note that TextUtils.ellipsize() use text-x-scale as 1.0 if ellipsize is needed. To
|
|
|
|
// get squeezed and ellipsized text, passes enlarged width (maxWidth / MIN_TEXT_XSCALE).
|
2013-10-10 13:16:17 +00:00
|
|
|
final float upscaledWidth = maxWidth / MIN_TEXT_XSCALE;
|
|
|
|
CharSequence ellipsized = TextUtils.ellipsize(
|
|
|
|
text, paint, upscaledWidth, TextUtils.TruncateAt.MIDDLE);
|
|
|
|
// For an unknown reason, ellipsized seems to return a text that does indeed fit inside the
|
|
|
|
// passed width according to paint.measureText, but not according to paint.getTextWidths.
|
|
|
|
// But when rendered, the text seems to actually take up as many pixels as returned by
|
|
|
|
// paint.getTextWidths, hence problem.
|
|
|
|
// To save this case, we compare the measured size of the new text, and if it's too much,
|
|
|
|
// try it again removing the difference. This may still give a text too long by one or
|
|
|
|
// two pixels so we take an additional 2 pixels cushion and call it a day.
|
|
|
|
// TODO: figure out why getTextWidths and measureText don't agree with each other, and
|
|
|
|
// remove the following code.
|
|
|
|
final float ellipsizedTextWidth = getTextWidth(ellipsized, paint);
|
|
|
|
if (upscaledWidth <= ellipsizedTextWidth) {
|
|
|
|
ellipsized = TextUtils.ellipsize(
|
|
|
|
text, paint, upscaledWidth - (ellipsizedTextWidth - upscaledWidth) - 2,
|
|
|
|
TextUtils.TruncateAt.MIDDLE);
|
|
|
|
}
|
2013-05-30 10:31:55 +00:00
|
|
|
paint.setTextScaleX(MIN_TEXT_XSCALE);
|
|
|
|
return ellipsized;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static int getTextWidth(final CharSequence text, final TextPaint paint) {
|
2013-05-30 10:44:26 +00:00
|
|
|
if (TextUtils.isEmpty(text)) {
|
|
|
|
return 0;
|
|
|
|
}
|
2013-05-30 10:31:55 +00:00
|
|
|
final Typeface savedTypeface = paint.getTypeface();
|
|
|
|
paint.setTypeface(getTextTypeface(text));
|
|
|
|
final int len = text.length();
|
|
|
|
final float[] widths = new float[len];
|
|
|
|
final int count = paint.getTextWidths(text, 0, len, widths);
|
|
|
|
int width = 0;
|
|
|
|
for (int i = 0; i < count; i++) {
|
|
|
|
width += Math.round(widths[i] + 0.5f);
|
|
|
|
}
|
|
|
|
paint.setTypeface(savedTypeface);
|
|
|
|
return width;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static Typeface getTextTypeface(final CharSequence text) {
|
2013-05-30 10:44:26 +00:00
|
|
|
if (!(text instanceof SpannableString)) {
|
2013-05-30 10:31:55 +00:00
|
|
|
return Typeface.DEFAULT;
|
2013-05-30 10:44:26 +00:00
|
|
|
}
|
2013-05-30 10:31:55 +00:00
|
|
|
|
|
|
|
final SpannableString ss = (SpannableString)text;
|
|
|
|
final StyleSpan[] styles = ss.getSpans(0, text.length(), StyleSpan.class);
|
2013-05-30 10:44:26 +00:00
|
|
|
if (styles.length == 0) {
|
2013-05-30 10:31:55 +00:00
|
|
|
return Typeface.DEFAULT;
|
2013-05-30 10:44:26 +00:00
|
|
|
}
|
2013-05-30 10:31:55 +00:00
|
|
|
|
2013-05-30 10:44:26 +00:00
|
|
|
if (styles[0].getStyle() == Typeface.BOLD) {
|
|
|
|
return Typeface.DEFAULT_BOLD;
|
2013-05-30 10:31:55 +00:00
|
|
|
}
|
2013-05-30 10:44:26 +00:00
|
|
|
// TODO: BOLD_ITALIC, ITALIC case?
|
|
|
|
return Typeface.DEFAULT;
|
2013-05-30 10:31:55 +00:00
|
|
|
}
|
|
|
|
}
|