2009-03-13 22:11:42 +00:00
|
|
|
/*
|
2011-09-01 05:54:28 +00:00
|
|
|
* Copyright (C) 2011 The Android Open Source Project
|
2010-12-06 12:26:38 +00:00
|
|
|
*
|
2009-03-13 22:11:42 +00:00
|
|
|
* 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
|
2010-12-06 12:26:38 +00:00
|
|
|
*
|
2009-03-13 22:11:42 +00:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2010-12-06 12:26:38 +00:00
|
|
|
*
|
2009-03-13 22:11:42 +00:00
|
|
|
* 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;
|
|
|
|
|
|
|
|
import android.content.Context;
|
2010-02-11 01:45:35 +00:00
|
|
|
import android.content.res.Resources;
|
2011-06-15 02:49:57 +00:00
|
|
|
import android.content.res.TypedArray;
|
2011-01-19 08:29:27 +00:00
|
|
|
import android.graphics.Color;
|
2009-03-13 22:11:42 +00:00
|
|
|
import android.graphics.Typeface;
|
2011-07-04 06:42:20 +00:00
|
|
|
import android.graphics.drawable.Drawable;
|
2010-12-06 12:26:38 +00:00
|
|
|
import android.os.Message;
|
2011-08-24 05:44:46 +00:00
|
|
|
import android.os.SystemClock;
|
2010-12-09 05:04:50 +00:00
|
|
|
import android.text.Spannable;
|
|
|
|
import android.text.SpannableString;
|
2010-12-10 06:24:28 +00:00
|
|
|
import android.text.Spanned;
|
2011-06-25 18:00:51 +00:00
|
|
|
import android.text.TextPaint;
|
2010-12-06 12:26:38 +00:00
|
|
|
import android.text.TextUtils;
|
2010-12-09 07:36:45 +00:00
|
|
|
import android.text.style.BackgroundColorSpan;
|
2010-12-09 05:04:50 +00:00
|
|
|
import android.text.style.CharacterStyle;
|
2010-12-09 07:36:45 +00:00
|
|
|
import android.text.style.ForegroundColorSpan;
|
2011-06-30 01:09:21 +00:00
|
|
|
import android.text.style.StyleSpan;
|
2010-12-09 05:04:50 +00:00
|
|
|
import android.text.style.UnderlineSpan;
|
2009-03-13 22:11:42 +00:00
|
|
|
import android.util.AttributeSet;
|
2011-08-24 05:44:46 +00:00
|
|
|
import android.util.DisplayMetrics;
|
2009-03-13 22:11:42 +00:00
|
|
|
import android.view.Gravity;
|
|
|
|
import android.view.LayoutInflater;
|
2011-08-24 05:44:46 +00:00
|
|
|
import android.view.MotionEvent;
|
2009-03-13 22:11:42 +00:00
|
|
|
import android.view.View;
|
2010-12-06 12:26:38 +00:00
|
|
|
import android.view.View.OnClickListener;
|
2011-08-06 07:45:58 +00:00
|
|
|
import android.view.View.OnLongClickListener;
|
2010-12-10 06:24:28 +00:00
|
|
|
import android.view.ViewGroup;
|
2010-12-06 12:26:38 +00:00
|
|
|
import android.widget.LinearLayout;
|
2009-03-13 22:11:42 +00:00
|
|
|
import android.widget.PopupWindow;
|
|
|
|
import android.widget.TextView;
|
|
|
|
|
2011-06-20 15:11:17 +00:00
|
|
|
import com.android.inputmethod.compat.FrameLayoutCompatUtils;
|
2011-06-20 14:23:33 +00:00
|
|
|
import com.android.inputmethod.compat.LinearLayoutCompatUtils;
|
2011-08-24 05:44:46 +00:00
|
|
|
import com.android.inputmethod.keyboard.KeyboardActionListener;
|
2011-09-01 08:50:51 +00:00
|
|
|
import com.android.inputmethod.keyboard.KeyboardView;
|
2011-08-24 05:44:46 +00:00
|
|
|
import com.android.inputmethod.keyboard.MoreKeysPanel;
|
|
|
|
import com.android.inputmethod.keyboard.PointerTracker;
|
2011-06-06 08:23:18 +00:00
|
|
|
import com.android.inputmethod.latin.SuggestedWords.SuggestedWordInfo;
|
|
|
|
|
2010-09-29 05:30:01 +00:00
|
|
|
import java.util.ArrayList;
|
2011-01-19 08:29:27 +00:00
|
|
|
import java.util.List;
|
2010-09-29 05:30:01 +00:00
|
|
|
|
2011-09-01 05:54:28 +00:00
|
|
|
public class SuggestionsView extends LinearLayout implements OnClickListener, OnLongClickListener {
|
2011-06-09 05:22:37 +00:00
|
|
|
public interface Listener {
|
|
|
|
public boolean addWordToDictionary(String word);
|
|
|
|
public void pickSuggestionManually(int index, CharSequence word);
|
|
|
|
}
|
|
|
|
|
2011-06-14 07:28:57 +00:00
|
|
|
// The maximum number of suggestions available. See {@link Suggest#mPrefMaxSuggestions}.
|
2011-08-24 05:44:46 +00:00
|
|
|
public static final int MAX_SUGGESTIONS = 18;
|
2009-03-13 22:11:42 +00:00
|
|
|
|
2011-01-31 05:49:33 +00:00
|
|
|
private static final boolean DBG = LatinImeLogger.sDBG;
|
2011-01-19 08:29:27 +00:00
|
|
|
|
2011-09-01 05:54:28 +00:00
|
|
|
private final ViewGroup mSuggestionsPlacer;
|
|
|
|
private final ViewGroup mSuggestionsStrip;
|
2011-09-01 08:50:51 +00:00
|
|
|
private KeyboardView mKeyboardView;
|
2011-06-30 01:09:21 +00:00
|
|
|
|
2011-08-24 05:44:46 +00:00
|
|
|
private final View mMoreSuggestionsContainer;
|
|
|
|
private final MoreSuggestionsView mMoreSuggestionsView;
|
|
|
|
private final MoreSuggestions.Builder mMoreSuggestionsBuilder;
|
|
|
|
private final PopupWindow mMoreSuggestionsWindow;
|
|
|
|
|
2011-06-07 08:18:53 +00:00
|
|
|
private final ArrayList<TextView> mWords = new ArrayList<TextView>();
|
2011-06-24 05:19:59 +00:00
|
|
|
private final ArrayList<TextView> mInfos = new ArrayList<TextView>();
|
2011-06-06 08:23:18 +00:00
|
|
|
private final ArrayList<View> mDividers = new ArrayList<View>();
|
2011-06-30 01:09:21 +00:00
|
|
|
|
2011-01-18 08:22:01 +00:00
|
|
|
private final PopupWindow mPreviewPopup;
|
|
|
|
private final TextView mPreviewText;
|
2010-02-11 01:45:35 +00:00
|
|
|
|
2011-06-09 05:22:37 +00:00
|
|
|
private Listener mListener;
|
2010-12-10 11:50:30 +00:00
|
|
|
private SuggestedWords mSuggestions = SuggestedWords.EMPTY;
|
2010-12-09 07:36:45 +00:00
|
|
|
private boolean mShowingAutoCorrectionInverted;
|
2010-02-03 23:35:49 +00:00
|
|
|
|
2011-09-02 07:53:38 +00:00
|
|
|
private final SuggestionsViewParams mParams;
|
2011-08-06 07:45:58 +00:00
|
|
|
private static final float MIN_TEXT_XSCALE = 0.70f;
|
2011-06-25 18:00:51 +00:00
|
|
|
|
2011-06-24 18:54:11 +00:00
|
|
|
private final UiHandler mHandler = new UiHandler(this);
|
2010-12-09 07:36:45 +00:00
|
|
|
|
2011-09-01 05:54:28 +00:00
|
|
|
private static class UiHandler extends StaticInnerHandlerWrapper<SuggestionsView> {
|
2010-12-09 07:36:45 +00:00
|
|
|
private static final int MSG_HIDE_PREVIEW = 0;
|
|
|
|
private static final int MSG_UPDATE_SUGGESTION = 1;
|
|
|
|
|
2011-08-26 06:13:30 +00:00
|
|
|
private static final long DELAY_HIDE_PREVIEW = 1300;
|
2010-12-09 07:36:45 +00:00
|
|
|
private static final long DELAY_UPDATE_SUGGESTION = 300;
|
|
|
|
|
2011-09-01 05:54:28 +00:00
|
|
|
public UiHandler(SuggestionsView outerInstance) {
|
2011-06-24 18:54:11 +00:00
|
|
|
super(outerInstance);
|
|
|
|
}
|
|
|
|
|
2010-12-06 12:26:38 +00:00
|
|
|
@Override
|
|
|
|
public void dispatchMessage(Message msg) {
|
2011-09-01 05:54:28 +00:00
|
|
|
final SuggestionsView suggestionsView = getOuterInstance();
|
2010-12-06 12:26:38 +00:00
|
|
|
switch (msg.what) {
|
|
|
|
case MSG_HIDE_PREVIEW:
|
2011-09-01 05:54:28 +00:00
|
|
|
suggestionsView.hidePreview();
|
2010-12-06 12:26:38 +00:00
|
|
|
break;
|
2010-12-09 07:36:45 +00:00
|
|
|
case MSG_UPDATE_SUGGESTION:
|
2011-09-01 05:54:28 +00:00
|
|
|
suggestionsView.updateSuggestions();
|
2010-12-09 07:36:45 +00:00
|
|
|
break;
|
2010-12-06 12:26:38 +00:00
|
|
|
}
|
|
|
|
}
|
2010-12-09 07:36:45 +00:00
|
|
|
|
|
|
|
public void postHidePreview() {
|
|
|
|
cancelHidePreview();
|
|
|
|
sendMessageDelayed(obtainMessage(MSG_HIDE_PREVIEW), DELAY_HIDE_PREVIEW);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void cancelHidePreview() {
|
|
|
|
removeMessages(MSG_HIDE_PREVIEW);
|
|
|
|
}
|
|
|
|
|
2010-12-19 08:32:26 +00:00
|
|
|
public void postUpdateSuggestions() {
|
2010-12-09 07:36:45 +00:00
|
|
|
cancelUpdateSuggestions();
|
2010-12-19 08:32:26 +00:00
|
|
|
sendMessageDelayed(obtainMessage(MSG_UPDATE_SUGGESTION),
|
2010-12-09 07:36:45 +00:00
|
|
|
DELAY_UPDATE_SUGGESTION);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void cancelUpdateSuggestions() {
|
|
|
|
removeMessages(MSG_UPDATE_SUGGESTION);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void cancelAllMessages() {
|
|
|
|
cancelHidePreview();
|
|
|
|
cancelUpdateSuggestions();
|
|
|
|
}
|
2010-12-10 06:24:28 +00:00
|
|
|
}
|
2010-09-29 05:30:01 +00:00
|
|
|
|
2011-09-01 05:54:28 +00:00
|
|
|
private static class SuggestionsViewParams {
|
2011-09-02 07:53:38 +00:00
|
|
|
private static final int DEFAULT_SUGGESTIONS_COUNT_IN_STRIP = 3;
|
|
|
|
private static final int DEFAULT_CENTER_SUGGESTION_PERCENTILE = 40;
|
|
|
|
private static final int PUNCTUATIONS_IN_STRIP = 6;
|
|
|
|
|
2011-06-30 01:09:21 +00:00
|
|
|
public final int mPadding;
|
|
|
|
public final int mDividerWidth;
|
2011-09-01 05:54:28 +00:00
|
|
|
public final int mSuggestionsStripHeight;
|
2011-09-02 07:53:38 +00:00
|
|
|
public final int mSuggestionsCountInStrip;
|
2011-08-04 09:18:45 +00:00
|
|
|
|
2011-09-02 07:53:38 +00:00
|
|
|
private final List<TextView> mWords;
|
|
|
|
private final List<View> mDividers;
|
|
|
|
private final List<TextView> mInfos;
|
2011-08-04 05:38:22 +00:00
|
|
|
|
|
|
|
private final int mColorTypedWord;
|
|
|
|
private final int mColorAutoCorrect;
|
2011-09-01 05:54:28 +00:00
|
|
|
private final int mColorSuggested;
|
|
|
|
private final float mCenterSuggestionWeight;
|
|
|
|
private final int mCenterSuggestionIndex;
|
|
|
|
private final Drawable mMoreSuggestionsHint;
|
2011-08-04 05:38:22 +00:00
|
|
|
|
|
|
|
private static final CharacterStyle BOLD_SPAN = new StyleSpan(Typeface.BOLD);
|
|
|
|
private static final CharacterStyle UNDERLINE_SPAN = new UnderlineSpan();
|
|
|
|
private final CharacterStyle mInvertedForegroundColorSpan;
|
|
|
|
private final CharacterStyle mInvertedBackgroundColorSpan;
|
|
|
|
private static final int AUTO_CORRECT_BOLD = 0x01;
|
|
|
|
private static final int AUTO_CORRECT_UNDERLINE = 0x02;
|
|
|
|
private static final int AUTO_CORRECT_INVERT = 0x04;
|
2011-08-17 01:18:58 +00:00
|
|
|
private static final int VALID_TYPED_WORD_BOLD = 0x08;
|
2011-08-04 05:38:22 +00:00
|
|
|
|
2011-08-17 01:18:58 +00:00
|
|
|
private final int mSuggestionStripOption;
|
2011-06-30 01:09:21 +00:00
|
|
|
|
2011-08-04 05:38:22 +00:00
|
|
|
private final ArrayList<CharSequence> mTexts = new ArrayList<CharSequence>();
|
2011-06-30 01:09:21 +00:00
|
|
|
|
2011-08-06 07:45:58 +00:00
|
|
|
public boolean mMoreSuggestionsAvailable;
|
|
|
|
|
2011-08-26 06:13:30 +00:00
|
|
|
public final TextView mWordToSaveView;
|
|
|
|
private final TextView mHintToSaveView;
|
|
|
|
private final CharSequence mHintToSaveText;
|
|
|
|
|
2011-09-02 07:53:38 +00:00
|
|
|
public SuggestionsViewParams(Context context, AttributeSet attrs, int defStyle,
|
2011-08-06 07:45:58 +00:00
|
|
|
List<TextView> words, List<View> dividers, List<TextView> infos) {
|
2011-09-02 07:53:38 +00:00
|
|
|
mWords = words;
|
|
|
|
mDividers = dividers;
|
|
|
|
mInfos = infos;
|
|
|
|
|
|
|
|
final TextView word = words.get(0);
|
|
|
|
final View divider = dividers.get(0);
|
|
|
|
mPadding = word.getCompoundPaddingLeft() + word.getCompoundPaddingRight();
|
|
|
|
divider.measure(
|
|
|
|
ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT);
|
|
|
|
mDividerWidth = divider.getMeasuredWidth();
|
|
|
|
|
|
|
|
final Resources res = word.getResources();
|
|
|
|
mSuggestionsStripHeight = res.getDimensionPixelSize(R.dimen.suggestions_strip_height);
|
|
|
|
|
2011-08-04 05:38:22 +00:00
|
|
|
final TypedArray a = context.obtainStyledAttributes(
|
2011-09-01 05:54:28 +00:00
|
|
|
attrs, R.styleable.SuggestionsView, defStyle, R.style.SuggestionsViewStyle);
|
|
|
|
mSuggestionStripOption = a.getInt(R.styleable.SuggestionsView_suggestionStripOption, 0);
|
|
|
|
mColorTypedWord = a.getColor(R.styleable.SuggestionsView_colorTypedWord, 0);
|
|
|
|
mColorAutoCorrect = a.getColor(R.styleable.SuggestionsView_colorAutoCorrect, 0);
|
|
|
|
mColorSuggested = a.getColor(R.styleable.SuggestionsView_colorSuggested, 0);
|
|
|
|
mSuggestionsCountInStrip = a.getInt(
|
|
|
|
R.styleable.SuggestionsView_suggestionsCountInStrip,
|
|
|
|
DEFAULT_SUGGESTIONS_COUNT_IN_STRIP);
|
|
|
|
mCenterSuggestionWeight = a.getInt(
|
|
|
|
R.styleable.SuggestionsView_centerSuggestionPercentile,
|
|
|
|
DEFAULT_CENTER_SUGGESTION_PERCENTILE) / 100.0f;
|
2011-08-04 05:38:22 +00:00
|
|
|
a.recycle();
|
|
|
|
|
2011-09-01 05:54:28 +00:00
|
|
|
mCenterSuggestionIndex = mSuggestionsCountInStrip / 2;
|
|
|
|
mMoreSuggestionsHint = res.getDrawable(R.drawable.more_suggestions_hint);
|
2011-08-05 09:54:52 +00:00
|
|
|
|
2011-08-04 05:38:22 +00:00
|
|
|
mInvertedForegroundColorSpan = new ForegroundColorSpan(mColorTypedWord ^ 0x00ffffff);
|
|
|
|
mInvertedBackgroundColorSpan = new BackgroundColorSpan(mColorTypedWord);
|
|
|
|
|
2011-08-26 06:13:30 +00:00
|
|
|
final LayoutInflater inflater = LayoutInflater.from(context);
|
2011-09-01 05:54:28 +00:00
|
|
|
mWordToSaveView = (TextView)inflater.inflate(R.layout.suggestion_word, null);
|
|
|
|
mHintToSaveView = (TextView)inflater.inflate(R.layout.suggestion_word, null);
|
2011-08-26 06:13:30 +00:00
|
|
|
mHintToSaveText = context.getText(R.string.hint_add_to_dictionary);
|
2011-06-30 01:09:21 +00:00
|
|
|
}
|
|
|
|
|
2011-09-01 05:54:28 +00:00
|
|
|
private CharSequence getStyledSuggestionWord(SuggestedWords suggestions, int pos) {
|
2011-08-17 01:18:58 +00:00
|
|
|
final CharSequence word = suggestions.getWord(pos);
|
|
|
|
final boolean isAutoCorrect = pos == 1 && willAutoCorrect(suggestions);
|
|
|
|
final boolean isTypedWordValid = pos == 0 && suggestions.mTypedWordValid;
|
|
|
|
if (!isAutoCorrect && !isTypedWordValid)
|
2011-08-04 05:38:22 +00:00
|
|
|
return word;
|
2011-08-17 01:18:58 +00:00
|
|
|
|
2011-08-04 05:38:22 +00:00
|
|
|
final int len = word.length();
|
|
|
|
final Spannable spannedWord = new SpannableString(word);
|
2011-08-17 01:18:58 +00:00
|
|
|
final int option = mSuggestionStripOption;
|
|
|
|
if ((isAutoCorrect && (option & AUTO_CORRECT_BOLD) != 0)
|
|
|
|
|| (isTypedWordValid && (option & VALID_TYPED_WORD_BOLD) != 0)) {
|
2011-08-04 05:38:22 +00:00
|
|
|
spannedWord.setSpan(BOLD_SPAN, 0, len, Spanned.SPAN_INCLUSIVE_EXCLUSIVE);
|
2011-08-17 01:18:58 +00:00
|
|
|
}
|
|
|
|
if (isAutoCorrect && (option & AUTO_CORRECT_UNDERLINE) != 0) {
|
2011-08-04 05:38:22 +00:00
|
|
|
spannedWord.setSpan(UNDERLINE_SPAN, 0, len, Spanned.SPAN_INCLUSIVE_EXCLUSIVE);
|
2011-08-17 01:18:58 +00:00
|
|
|
}
|
2011-08-04 05:38:22 +00:00
|
|
|
return spannedWord;
|
|
|
|
}
|
|
|
|
|
2011-08-05 09:54:52 +00:00
|
|
|
private static boolean willAutoCorrect(SuggestedWords suggestions) {
|
|
|
|
return !suggestions.mTypedWordValid && suggestions.mHasMinimalSuggestion;
|
|
|
|
}
|
|
|
|
|
|
|
|
private int getWordPosition(int index, SuggestedWords suggestions) {
|
|
|
|
// TODO: This works for 3 suggestions. Revisit this algorithm when there are 5 or more
|
|
|
|
// suggestions.
|
|
|
|
final int centerPos = willAutoCorrect(suggestions) ? 1 : 0;
|
2011-09-01 05:54:28 +00:00
|
|
|
if (index == mCenterSuggestionIndex) {
|
2011-08-05 09:54:52 +00:00
|
|
|
return centerPos;
|
|
|
|
} else if (index == centerPos) {
|
2011-09-01 05:54:28 +00:00
|
|
|
return mCenterSuggestionIndex;
|
2011-08-05 09:54:52 +00:00
|
|
|
} else {
|
2011-08-04 05:38:22 +00:00
|
|
|
return index;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-01 05:54:28 +00:00
|
|
|
private int getSuggestionTextColor(int index, SuggestedWords suggestions, int pos) {
|
2011-08-04 05:38:22 +00:00
|
|
|
// TODO: Need to revisit this logic with bigram suggestions
|
2011-09-01 05:54:28 +00:00
|
|
|
final boolean isSuggested = (pos != 0);
|
2011-08-04 05:38:22 +00:00
|
|
|
|
|
|
|
final int color;
|
2011-09-01 05:54:28 +00:00
|
|
|
if (index == mCenterSuggestionIndex && willAutoCorrect(suggestions)) {
|
2011-08-04 05:38:22 +00:00
|
|
|
color = mColorAutoCorrect;
|
2011-09-01 05:54:28 +00:00
|
|
|
} else if (isSuggested) {
|
|
|
|
color = mColorSuggested;
|
2011-08-04 05:38:22 +00:00
|
|
|
} else {
|
|
|
|
color = mColorTypedWord;
|
|
|
|
}
|
2011-08-05 09:54:52 +00:00
|
|
|
|
|
|
|
final SuggestedWordInfo info = (pos < suggestions.size())
|
|
|
|
? suggestions.getInfo(pos) : null;
|
2011-08-26 10:04:54 +00:00
|
|
|
if (info != null && info.isObsoleteSuggestedWord()) {
|
2011-08-04 05:38:22 +00:00
|
|
|
return applyAlpha(color, 0.5f);
|
|
|
|
} else {
|
|
|
|
return color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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));
|
|
|
|
}
|
|
|
|
|
|
|
|
public CharSequence getInvertedText(CharSequence text) {
|
2011-08-17 01:18:58 +00:00
|
|
|
if ((mSuggestionStripOption & AUTO_CORRECT_INVERT) == 0)
|
2011-08-04 05:38:22 +00:00
|
|
|
return null;
|
|
|
|
final int len = text.length();
|
|
|
|
final Spannable word = new SpannableString(text);
|
|
|
|
word.setSpan(mInvertedBackgroundColorSpan, 0, len, Spanned.SPAN_INCLUSIVE_EXCLUSIVE);
|
|
|
|
word.setSpan(mInvertedForegroundColorSpan, 0, len, Spanned.SPAN_INCLUSIVE_EXCLUSIVE);
|
|
|
|
return word;
|
|
|
|
}
|
|
|
|
|
2011-09-01 05:13:01 +00:00
|
|
|
public void layout(SuggestedWords suggestions, ViewGroup stripView, ViewGroup placer,
|
2011-08-04 09:18:45 +00:00
|
|
|
int stripWidth) {
|
2011-08-05 09:54:52 +00:00
|
|
|
if (suggestions.isPunctuationSuggestions()) {
|
2011-09-01 05:13:01 +00:00
|
|
|
layoutPunctuationSuggestions(suggestions, stripView);
|
|
|
|
return;
|
2011-08-05 09:54:52 +00:00
|
|
|
}
|
|
|
|
|
2011-09-01 05:54:28 +00:00
|
|
|
final int countInStrip = mSuggestionsCountInStrip;
|
2011-08-05 09:54:52 +00:00
|
|
|
setupTexts(suggestions, countInStrip);
|
2011-08-08 11:33:44 +00:00
|
|
|
mMoreSuggestionsAvailable = (suggestions.size() > countInStrip);
|
2011-08-05 09:54:52 +00:00
|
|
|
int x = 0;
|
|
|
|
for (int index = 0; index < countInStrip; index++) {
|
|
|
|
final int pos = getWordPosition(index, suggestions);
|
|
|
|
|
|
|
|
if (index != 0) {
|
|
|
|
final View divider = mDividers.get(pos);
|
2011-09-01 05:54:28 +00:00
|
|
|
// Add divider if this isn't the left most suggestion in suggestions strip.
|
2011-08-05 09:54:52 +00:00
|
|
|
stripView.addView(divider);
|
2011-08-26 10:30:57 +00:00
|
|
|
x += divider.getMeasuredWidth();
|
2011-08-05 09:54:52 +00:00
|
|
|
}
|
|
|
|
|
2011-08-04 09:18:45 +00:00
|
|
|
final CharSequence styled = mTexts.get(pos);
|
2011-08-05 09:54:52 +00:00
|
|
|
final TextView word = mWords.get(pos);
|
2011-09-01 05:54:28 +00:00
|
|
|
if (index == mCenterSuggestionIndex && mMoreSuggestionsAvailable) {
|
2011-08-06 07:45:58 +00:00
|
|
|
// TODO: This "more suggestions hint" should have nicely designed icon.
|
|
|
|
word.setCompoundDrawablesWithIntrinsicBounds(
|
2011-09-01 05:54:28 +00:00
|
|
|
null, null, null, mMoreSuggestionsHint);
|
2011-08-24 08:35:42 +00:00
|
|
|
// HACK: To align with other TextView that has no compound drawables.
|
2011-09-01 05:54:28 +00:00
|
|
|
word.setCompoundDrawablePadding(-mMoreSuggestionsHint.getIntrinsicHeight());
|
2011-08-06 07:45:58 +00:00
|
|
|
} else {
|
2011-08-24 08:35:42 +00:00
|
|
|
word.setCompoundDrawablesWithIntrinsicBounds(null, null, null, null);
|
2011-08-06 07:45:58 +00:00
|
|
|
}
|
|
|
|
|
2011-09-01 05:54:28 +00:00
|
|
|
// Disable this suggestion if the suggestion is null or empty.
|
2011-08-05 09:54:52 +00:00
|
|
|
word.setEnabled(!TextUtils.isEmpty(styled));
|
2011-09-01 05:54:28 +00:00
|
|
|
word.setTextColor(getSuggestionTextColor(index, suggestions, pos));
|
|
|
|
final int width = getSuggestionWidth(index, stripWidth);
|
2011-08-05 09:54:52 +00:00
|
|
|
final CharSequence text = getEllipsizedText(styled, width, word.getPaint());
|
|
|
|
final float scaleX = word.getTextScaleX();
|
|
|
|
word.setText(text); // TextView.setText() resets text scale x to 1.0.
|
|
|
|
word.setTextScaleX(scaleX);
|
|
|
|
stripView.addView(word);
|
2011-08-31 04:00:32 +00:00
|
|
|
setLayoutWeight(
|
2011-09-01 05:54:28 +00:00
|
|
|
word, getSuggestionWeight(index), ViewGroup.LayoutParams.MATCH_PARENT);
|
2011-08-26 10:30:57 +00:00
|
|
|
x += word.getMeasuredWidth();
|
2011-08-04 09:18:45 +00:00
|
|
|
|
|
|
|
if (DBG) {
|
2011-08-05 09:54:52 +00:00
|
|
|
final CharSequence debugInfo = getDebugInfo(suggestions, pos);
|
2011-08-04 09:18:45 +00:00
|
|
|
if (debugInfo != null) {
|
2011-08-05 09:54:52 +00:00
|
|
|
final TextView info = mInfos.get(pos);
|
2011-08-04 09:18:45 +00:00
|
|
|
info.setText(debugInfo);
|
2011-08-26 10:30:57 +00:00
|
|
|
placer.addView(info);
|
2011-08-31 04:00:32 +00:00
|
|
|
info.measure(ViewGroup.LayoutParams.WRAP_CONTENT,
|
|
|
|
ViewGroup.LayoutParams.WRAP_CONTENT);
|
2011-08-05 09:54:52 +00:00
|
|
|
final int infoWidth = info.getMeasuredWidth();
|
2011-08-04 09:18:45 +00:00
|
|
|
final int y = info.getMeasuredHeight();
|
2011-08-26 10:30:57 +00:00
|
|
|
FrameLayoutCompatUtils.placeViewAt(
|
|
|
|
info, x - infoWidth, y, infoWidth, info.getMeasuredHeight());
|
2011-08-04 09:18:45 +00:00
|
|
|
}
|
2011-08-05 09:54:52 +00:00
|
|
|
}
|
2011-08-04 09:18:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-01 05:54:28 +00:00
|
|
|
private int getSuggestionWidth(int index, int maxWidth) {
|
|
|
|
final int paddings = mPadding * mSuggestionsCountInStrip;
|
|
|
|
final int dividers = mDividerWidth * (mSuggestionsCountInStrip - 1);
|
2011-08-05 09:54:52 +00:00
|
|
|
final int availableWidth = maxWidth - paddings - dividers;
|
2011-09-01 05:54:28 +00:00
|
|
|
return (int)(availableWidth * getSuggestionWeight(index));
|
2011-08-05 09:54:52 +00:00
|
|
|
}
|
2011-06-30 01:09:21 +00:00
|
|
|
|
2011-09-01 05:54:28 +00:00
|
|
|
private float getSuggestionWeight(int index) {
|
|
|
|
if (index == mCenterSuggestionIndex) {
|
|
|
|
return mCenterSuggestionWeight;
|
2011-08-05 09:54:52 +00:00
|
|
|
} else {
|
|
|
|
// TODO: Revisit this for cases of 5 or more suggestions
|
2011-09-01 05:54:28 +00:00
|
|
|
return (1.0f - mCenterSuggestionWeight) / (mSuggestionsCountInStrip - 1);
|
2011-06-30 01:09:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-05 09:54:52 +00:00
|
|
|
private void setupTexts(SuggestedWords suggestions, int countInStrip) {
|
2011-06-30 01:09:21 +00:00
|
|
|
mTexts.clear();
|
2011-08-05 09:54:52 +00:00
|
|
|
final int count = Math.min(suggestions.size(), countInStrip);
|
|
|
|
for (int pos = 0; pos < count; pos++) {
|
2011-09-01 05:54:28 +00:00
|
|
|
final CharSequence styled = getStyledSuggestionWord(suggestions, pos);
|
2011-06-30 01:09:21 +00:00
|
|
|
mTexts.add(styled);
|
|
|
|
}
|
2011-08-05 09:54:52 +00:00
|
|
|
for (int pos = count; pos < countInStrip; pos++) {
|
|
|
|
// Make this inactive for touches in layout().
|
|
|
|
mTexts.add(null);
|
|
|
|
}
|
2011-06-30 01:09:21 +00:00
|
|
|
}
|
|
|
|
|
2011-09-01 05:13:01 +00:00
|
|
|
private void layoutPunctuationSuggestions(SuggestedWords suggestions, ViewGroup stripView) {
|
2011-08-05 09:54:52 +00:00
|
|
|
final int countInStrip = Math.min(suggestions.size(), PUNCTUATIONS_IN_STRIP);
|
|
|
|
for (int index = 0; index < countInStrip; index++) {
|
|
|
|
if (index != 0) {
|
2011-09-01 05:54:28 +00:00
|
|
|
// Add divider if this isn't the left most suggestion in suggestions strip.
|
2011-08-05 09:54:52 +00:00
|
|
|
stripView.addView(mDividers.get(index));
|
|
|
|
}
|
|
|
|
|
|
|
|
final TextView word = mWords.get(index);
|
|
|
|
word.setEnabled(true);
|
|
|
|
word.setTextColor(mColorTypedWord);
|
|
|
|
final CharSequence text = suggestions.getWord(index);
|
|
|
|
word.setText(text);
|
|
|
|
word.setTextScaleX(1.0f);
|
2011-08-06 07:45:58 +00:00
|
|
|
word.setCompoundDrawables(null, null, null, null);
|
2011-08-05 09:54:52 +00:00
|
|
|
stripView.addView(word);
|
2011-09-01 05:54:28 +00:00
|
|
|
setLayoutWeight(word, 1.0f, mSuggestionsStripHeight);
|
2011-08-05 09:54:52 +00:00
|
|
|
}
|
2011-08-06 07:45:58 +00:00
|
|
|
mMoreSuggestionsAvailable = false;
|
2011-06-30 01:09:21 +00:00
|
|
|
}
|
2011-08-26 06:13:30 +00:00
|
|
|
|
|
|
|
public void layoutAddToDictionaryHint(CharSequence word, ViewGroup stripView,
|
|
|
|
int stripWidth) {
|
|
|
|
final int width = stripWidth - mDividerWidth - mPadding * 2;
|
|
|
|
|
|
|
|
final TextView wordView = mWordToSaveView;
|
|
|
|
wordView.setTextColor(mColorTypedWord);
|
2011-09-01 05:54:28 +00:00
|
|
|
final int wordWidth = (int)(width * mCenterSuggestionWeight);
|
2011-08-26 06:13:30 +00:00
|
|
|
final CharSequence text = getEllipsizedText(word, wordWidth, wordView.getPaint());
|
|
|
|
final float wordScaleX = wordView.getTextScaleX();
|
|
|
|
wordView.setTag(word);
|
|
|
|
wordView.setText(text);
|
|
|
|
wordView.setTextScaleX(wordScaleX);
|
|
|
|
stripView.addView(wordView);
|
2011-09-01 05:54:28 +00:00
|
|
|
setLayoutWeight(wordView, mCenterSuggestionWeight, ViewGroup.LayoutParams.MATCH_PARENT);
|
2011-08-26 06:13:30 +00:00
|
|
|
|
|
|
|
stripView.addView(mDividers.get(0));
|
|
|
|
|
|
|
|
final TextView hintView = mHintToSaveView;
|
|
|
|
hintView.setTextColor(mColorAutoCorrect);
|
|
|
|
final int hintWidth = width - wordWidth;
|
|
|
|
final float hintScaleX = getTextScaleX(mHintToSaveText, hintWidth, hintView.getPaint());
|
|
|
|
hintView.setText(mHintToSaveText);
|
|
|
|
hintView.setTextScaleX(hintScaleX);
|
|
|
|
stripView.addView(hintView);
|
2011-08-31 04:00:32 +00:00
|
|
|
setLayoutWeight(
|
2011-09-01 05:54:28 +00:00
|
|
|
hintView, 1.0f - mCenterSuggestionWeight, ViewGroup.LayoutParams.MATCH_PARENT);
|
2011-08-26 06:13:30 +00:00
|
|
|
}
|
2011-06-30 01:09:21 +00:00
|
|
|
}
|
|
|
|
|
2009-03-13 22:11:42 +00:00
|
|
|
/**
|
2011-09-01 05:54:28 +00:00
|
|
|
* Construct a {@link SuggestionsView} for showing suggested words for completion.
|
2009-03-13 22:11:42 +00:00
|
|
|
* @param context
|
|
|
|
* @param attrs
|
|
|
|
*/
|
2011-09-01 05:54:28 +00:00
|
|
|
public SuggestionsView(Context context, AttributeSet attrs) {
|
|
|
|
this(context, attrs, R.attr.suggestionsViewStyle);
|
2011-06-15 02:49:57 +00:00
|
|
|
}
|
|
|
|
|
2011-09-01 05:54:28 +00:00
|
|
|
public SuggestionsView(Context context, AttributeSet attrs, int defStyle) {
|
2011-06-20 14:23:33 +00:00
|
|
|
// Note: Up to version 10 (Gingerbread) of the API, LinearLayout doesn't have 3-argument
|
|
|
|
// constructor.
|
|
|
|
// TODO: Call 3-argument constructor, super(context, attrs, defStyle), when we abandon
|
|
|
|
// backward compatibility with the version 10 or earlier of the API.
|
|
|
|
super(context, attrs);
|
2011-09-01 05:54:28 +00:00
|
|
|
if (defStyle != R.attr.suggestionsViewStyle) {
|
2011-06-20 14:23:33 +00:00
|
|
|
throw new IllegalArgumentException(
|
2011-09-01 05:54:28 +00:00
|
|
|
"can't accept defStyle other than R.attr.suggestionsViewStyle: defStyle="
|
2011-06-20 14:23:33 +00:00
|
|
|
+ defStyle);
|
|
|
|
}
|
|
|
|
setBackgroundDrawable(LinearLayoutCompatUtils.getBackgroundDrawable(
|
2011-09-01 05:54:28 +00:00
|
|
|
context, attrs, defStyle, R.style.SuggestionsViewStyle));
|
2009-03-13 22:11:42 +00:00
|
|
|
|
2011-08-04 09:18:45 +00:00
|
|
|
final LayoutInflater inflater = LayoutInflater.from(context);
|
2011-09-01 05:54:28 +00:00
|
|
|
inflater.inflate(R.layout.suggestions_strip, this);
|
2011-06-14 07:28:57 +00:00
|
|
|
|
|
|
|
mPreviewPopup = new PopupWindow(context);
|
2011-09-01 05:54:28 +00:00
|
|
|
mPreviewText = (TextView) inflater.inflate(R.layout.suggestion_preview, null);
|
2011-08-31 04:00:32 +00:00
|
|
|
mPreviewPopup.setWindowLayoutMode(
|
|
|
|
ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
|
2009-03-13 22:11:42 +00:00
|
|
|
mPreviewPopup.setContentView(mPreviewText);
|
|
|
|
mPreviewPopup.setBackgroundDrawable(null);
|
|
|
|
|
2011-09-01 05:54:28 +00:00
|
|
|
mSuggestionsPlacer = (ViewGroup)findViewById(R.id.suggestions_placer);
|
|
|
|
mSuggestionsStrip = (ViewGroup)findViewById(R.id.suggestions_strip);
|
2011-08-05 09:54:52 +00:00
|
|
|
for (int pos = 0; pos < MAX_SUGGESTIONS; pos++) {
|
2011-09-01 05:54:28 +00:00
|
|
|
final TextView word = (TextView)inflater.inflate(R.layout.suggestion_word, null);
|
2011-08-05 09:54:52 +00:00
|
|
|
word.setTag(pos);
|
2011-06-24 05:19:59 +00:00
|
|
|
word.setOnClickListener(this);
|
2011-08-06 07:45:58 +00:00
|
|
|
word.setOnLongClickListener(this);
|
2011-06-24 05:19:59 +00:00
|
|
|
mWords.add(word);
|
2011-09-01 05:54:28 +00:00
|
|
|
final View divider = inflater.inflate(R.layout.suggestion_divider, null);
|
2011-08-05 09:54:52 +00:00
|
|
|
divider.setTag(pos);
|
2011-07-28 21:15:24 +00:00
|
|
|
divider.setOnClickListener(this);
|
|
|
|
mDividers.add(divider);
|
2011-09-01 05:54:28 +00:00
|
|
|
mInfos.add((TextView)inflater.inflate(R.layout.suggestion_info, null));
|
2010-09-30 03:10:03 +00:00
|
|
|
}
|
2010-09-29 05:30:01 +00:00
|
|
|
|
2011-09-02 07:53:38 +00:00
|
|
|
mParams = new SuggestionsViewParams(context, attrs, defStyle, mWords, mDividers, mInfos);
|
|
|
|
mParams.mWordToSaveView.setOnClickListener(this);
|
2011-08-24 05:44:46 +00:00
|
|
|
|
|
|
|
mMoreSuggestionsContainer = inflater.inflate(R.layout.more_suggestions, null);
|
|
|
|
mMoreSuggestionsView = (MoreSuggestionsView)mMoreSuggestionsContainer
|
|
|
|
.findViewById(R.id.more_suggestions_view);
|
|
|
|
mMoreSuggestionsBuilder = new MoreSuggestions.Builder(mMoreSuggestionsView);
|
|
|
|
mMoreSuggestionsWindow = new PopupWindow(context);
|
|
|
|
mMoreSuggestionsWindow.setWindowLayoutMode(
|
|
|
|
ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
|
|
|
|
mMoreSuggestionsWindow.setBackgroundDrawable(null);
|
2009-03-13 22:11:42 +00:00
|
|
|
}
|
2010-09-30 03:10:03 +00:00
|
|
|
|
2009-03-13 22:11:42 +00:00
|
|
|
/**
|
2011-06-09 05:22:37 +00:00
|
|
|
* A connection back to the input method.
|
2009-03-13 22:11:42 +00:00
|
|
|
* @param listener
|
|
|
|
*/
|
2011-06-14 07:28:57 +00:00
|
|
|
public void setListener(Listener listener, View inputView) {
|
2011-06-09 05:22:37 +00:00
|
|
|
mListener = listener;
|
2011-09-01 08:50:51 +00:00
|
|
|
mKeyboardView = (KeyboardView)inputView.findViewById(R.id.keyboard_view);
|
2009-03-13 22:11:42 +00:00
|
|
|
}
|
|
|
|
|
2010-12-10 11:50:30 +00:00
|
|
|
public void setSuggestions(SuggestedWords suggestions) {
|
2010-12-19 08:32:26 +00:00
|
|
|
if (suggestions == null)
|
2010-12-10 07:05:22 +00:00
|
|
|
return;
|
2010-12-19 08:32:26 +00:00
|
|
|
mSuggestions = suggestions;
|
2010-12-09 07:36:45 +00:00
|
|
|
if (mShowingAutoCorrectionInverted) {
|
2010-12-19 08:32:26 +00:00
|
|
|
mHandler.postUpdateSuggestions();
|
2010-12-09 07:36:45 +00:00
|
|
|
} else {
|
2010-12-19 08:32:26 +00:00
|
|
|
updateSuggestions();
|
2010-12-09 07:36:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-12-19 08:32:26 +00:00
|
|
|
private void updateSuggestions() {
|
2010-12-06 12:26:38 +00:00
|
|
|
clear();
|
2011-08-04 09:18:45 +00:00
|
|
|
if (mSuggestions.size() == 0)
|
2011-06-30 01:09:21 +00:00
|
|
|
return;
|
|
|
|
|
2011-09-02 07:53:38 +00:00
|
|
|
mParams.layout(mSuggestions, mSuggestionsStrip, mSuggestionsPlacer, getWidth());
|
2011-08-04 09:18:45 +00:00
|
|
|
}
|
2011-06-30 01:09:21 +00:00
|
|
|
|
2011-08-04 09:18:45 +00:00
|
|
|
private static CharSequence getDebugInfo(SuggestedWords suggestions, int pos) {
|
2011-08-05 09:54:52 +00:00
|
|
|
if (DBG && pos < suggestions.size()) {
|
2011-08-04 09:18:45 +00:00
|
|
|
final SuggestedWordInfo wordInfo = suggestions.getInfo(pos);
|
|
|
|
if (wordInfo != null) {
|
|
|
|
final CharSequence debugInfo = wordInfo.getDebugString();
|
|
|
|
if (!TextUtils.isEmpty(debugInfo)) {
|
|
|
|
return debugInfo;
|
2011-08-04 05:38:22 +00:00
|
|
|
}
|
2011-06-24 05:19:59 +00:00
|
|
|
}
|
2011-06-14 07:28:57 +00:00
|
|
|
}
|
2011-08-04 09:18:45 +00:00
|
|
|
return null;
|
2011-06-14 07:28:57 +00:00
|
|
|
}
|
|
|
|
|
2011-07-01 05:21:25 +00:00
|
|
|
private static void setLayoutWeight(View v, float weight, int height) {
|
2011-06-30 01:09:21 +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;
|
2011-07-01 05:21:25 +00:00
|
|
|
llp.height = height;
|
2011-06-30 01:09:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-26 06:13:30 +00:00
|
|
|
private static float getTextScaleX(CharSequence text, int maxWidth, TextPaint paint) {
|
|
|
|
paint.setTextScaleX(1.0f);
|
|
|
|
final int width = getTextWidth(text, paint);
|
|
|
|
if (width <= maxWidth) {
|
|
|
|
return 1.0f;
|
|
|
|
}
|
|
|
|
return maxWidth / (float)width;
|
|
|
|
}
|
|
|
|
|
2011-06-30 01:09:21 +00:00
|
|
|
private static CharSequence getEllipsizedText(CharSequence text, int maxWidth,
|
|
|
|
TextPaint paint) {
|
2011-08-17 00:30:44 +00:00
|
|
|
if (text == null) return null;
|
2011-06-30 01:09:21 +00:00
|
|
|
paint.setTextScaleX(1.0f);
|
|
|
|
final int width = getTextWidth(text, paint);
|
2011-08-05 09:54:52 +00:00
|
|
|
if (width <= maxWidth) {
|
|
|
|
return text;
|
|
|
|
}
|
|
|
|
final float scaleX = maxWidth / (float)width;
|
2011-06-25 18:00:51 +00:00
|
|
|
if (scaleX >= MIN_TEXT_XSCALE) {
|
2011-06-30 01:09:21 +00:00
|
|
|
paint.setTextScaleX(scaleX);
|
|
|
|
return text;
|
2011-06-25 18:00:51 +00:00
|
|
|
}
|
|
|
|
|
2011-06-30 01:09:21 +00:00
|
|
|
// Note that TextUtils.ellipsize() use text-x-scale as 1.0 if ellipsize is needed. To get
|
2011-08-05 09:54:52 +00:00
|
|
|
// squeezed and ellipsized text, passes enlarged width (maxWidth / MIN_TEXT_XSCALE).
|
2011-06-30 01:09:21 +00:00
|
|
|
final CharSequence ellipsized = TextUtils.ellipsize(
|
|
|
|
text, paint, maxWidth / MIN_TEXT_XSCALE, TextUtils.TruncateAt.MIDDLE);
|
|
|
|
paint.setTextScaleX(MIN_TEXT_XSCALE);
|
|
|
|
return ellipsized;
|
2011-06-25 18:00:51 +00:00
|
|
|
}
|
|
|
|
|
2011-06-30 01:09:21 +00:00
|
|
|
private static int getTextWidth(CharSequence text, TextPaint paint) {
|
2011-06-25 18:00:51 +00:00
|
|
|
if (TextUtils.isEmpty(text)) return 0;
|
2011-07-01 13:23:46 +00:00
|
|
|
final Typeface savedTypeface = paint.getTypeface();
|
2011-06-30 01:09:21 +00:00
|
|
|
paint.setTypeface(getTextTypeface(text));
|
2011-06-25 18:00:51 +00:00
|
|
|
final int len = text.length();
|
|
|
|
final float[] widths = new float[len];
|
|
|
|
final int count = paint.getTextWidths(text, 0, len, widths);
|
2011-07-01 13:23:46 +00:00
|
|
|
int width = 0;
|
2011-06-25 18:00:51 +00:00
|
|
|
for (int i = 0; i < count; i++) {
|
2011-07-01 13:23:46 +00:00
|
|
|
width += Math.round(widths[i] + 0.5f);
|
2011-06-25 18:00:51 +00:00
|
|
|
}
|
2011-07-01 13:23:46 +00:00
|
|
|
paint.setTypeface(savedTypeface);
|
|
|
|
return width;
|
2011-06-25 18:00:51 +00:00
|
|
|
}
|
|
|
|
|
2011-06-30 01:09:21 +00:00
|
|
|
private static Typeface getTextTypeface(CharSequence text) {
|
|
|
|
if (!(text instanceof SpannableString))
|
|
|
|
return Typeface.DEFAULT;
|
|
|
|
|
|
|
|
final SpannableString ss = (SpannableString)text;
|
|
|
|
final StyleSpan[] styles = ss.getSpans(0, text.length(), StyleSpan.class);
|
|
|
|
if (styles.length == 0)
|
|
|
|
return Typeface.DEFAULT;
|
|
|
|
|
|
|
|
switch (styles[0].getStyle()) {
|
|
|
|
case Typeface.BOLD: return Typeface.DEFAULT_BOLD;
|
|
|
|
// TODO: BOLD_ITALIC, ITALIC case?
|
|
|
|
default: return Typeface.DEFAULT;
|
2011-06-25 18:00:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-12-09 07:36:45 +00:00
|
|
|
public void onAutoCorrectionInverted(CharSequence autoCorrectedWord) {
|
2011-09-02 07:53:38 +00:00
|
|
|
final CharSequence inverted = mParams.getInvertedText(autoCorrectedWord);
|
2011-08-04 05:38:22 +00:00
|
|
|
if (inverted == null)
|
2010-12-09 07:36:45 +00:00
|
|
|
return;
|
2011-06-07 08:18:53 +00:00
|
|
|
final TextView tv = mWords.get(1);
|
2011-08-04 05:38:22 +00:00
|
|
|
tv.setText(inverted);
|
2010-12-09 07:36:45 +00:00
|
|
|
mShowingAutoCorrectionInverted = true;
|
|
|
|
}
|
|
|
|
|
2010-08-26 19:22:58 +00:00
|
|
|
public boolean isShowingAddToDictionaryHint() {
|
2011-09-01 05:54:28 +00:00
|
|
|
return mSuggestionsStrip.getChildCount() > 0
|
2011-09-02 07:53:38 +00:00
|
|
|
&& mSuggestionsStrip.getChildAt(0) == mParams.mWordToSaveView;
|
2010-08-26 19:22:58 +00:00
|
|
|
}
|
|
|
|
|
2010-02-11 01:45:35 +00:00
|
|
|
public void showAddToDictionaryHint(CharSequence word) {
|
2011-08-26 06:13:30 +00:00
|
|
|
clear();
|
2011-09-02 07:53:38 +00:00
|
|
|
mParams.layoutAddToDictionaryHint(word, mSuggestionsStrip, getWidth());
|
2010-02-11 01:45:35 +00:00
|
|
|
}
|
|
|
|
|
2010-08-03 18:47:42 +00:00
|
|
|
public boolean dismissAddToDictionaryHint() {
|
2011-08-26 06:13:30 +00:00
|
|
|
if (isShowingAddToDictionaryHint()) {
|
|
|
|
clear();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2010-08-03 18:47:42 +00:00
|
|
|
}
|
|
|
|
|
2010-12-10 11:50:30 +00:00
|
|
|
public SuggestedWords getSuggestions() {
|
2010-08-20 05:35:02 +00:00
|
|
|
return mSuggestions;
|
|
|
|
}
|
|
|
|
|
2009-03-13 22:11:42 +00:00
|
|
|
public void clear() {
|
2010-12-09 07:36:45 +00:00
|
|
|
mShowingAutoCorrectionInverted = false;
|
2011-09-01 05:54:28 +00:00
|
|
|
mSuggestionsPlacer.removeAllViews();
|
|
|
|
mSuggestionsPlacer.addView(mSuggestionsStrip);
|
|
|
|
mSuggestionsStrip.removeAllViews();
|
2011-09-01 08:50:51 +00:00
|
|
|
dismissMoreSuggestions();
|
2009-03-13 22:11:42 +00:00
|
|
|
}
|
|
|
|
|
2009-03-31 21:50:26 +00:00
|
|
|
private void hidePreview() {
|
2010-09-29 05:30:01 +00:00
|
|
|
mPreviewPopup.dismiss();
|
2009-03-31 21:50:26 +00:00
|
|
|
}
|
2010-12-06 12:26:38 +00:00
|
|
|
|
2011-08-26 06:13:30 +00:00
|
|
|
private void showPreview(View view, CharSequence word) {
|
2010-12-06 12:26:38 +00:00
|
|
|
if (TextUtils.isEmpty(word))
|
|
|
|
return;
|
|
|
|
|
|
|
|
final TextView previewText = mPreviewText;
|
2011-09-02 07:53:38 +00:00
|
|
|
previewText.setTextColor(mParams.mColorTypedWord);
|
2010-12-06 12:26:38 +00:00
|
|
|
previewText.setText(word);
|
2011-08-31 04:00:32 +00:00
|
|
|
previewText.measure(
|
|
|
|
ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
|
2010-12-06 12:26:38 +00:00
|
|
|
final int[] offsetInWindow = new int[2];
|
2011-08-26 06:13:30 +00:00
|
|
|
view.getLocationInWindow(offsetInWindow);
|
2010-12-06 12:26:38 +00:00
|
|
|
final int posX = offsetInWindow[0];
|
|
|
|
final int posY = offsetInWindow[1] - previewText.getMeasuredHeight();
|
|
|
|
final PopupWindow previewPopup = mPreviewPopup;
|
|
|
|
if (previewPopup.isShowing()) {
|
|
|
|
previewPopup.update(posX, posY, previewPopup.getWidth(), previewPopup.getHeight());
|
|
|
|
} else {
|
|
|
|
previewPopup.showAtLocation(this, Gravity.NO_GRAVITY, posX, posY);
|
2009-03-13 22:11:42 +00:00
|
|
|
}
|
2010-12-06 12:26:38 +00:00
|
|
|
previewText.setVisibility(VISIBLE);
|
2010-12-09 07:36:45 +00:00
|
|
|
mHandler.postHidePreview();
|
2009-03-13 22:11:42 +00:00
|
|
|
}
|
2010-09-30 05:26:12 +00:00
|
|
|
|
2010-12-06 12:26:38 +00:00
|
|
|
private void addToDictionary(CharSequence word) {
|
2011-06-09 05:22:37 +00:00
|
|
|
if (mListener.addWordToDictionary(word.toString())) {
|
2011-08-26 06:13:30 +00:00
|
|
|
final CharSequence message = getContext().getString(R.string.added_word, word);
|
2011-09-02 07:53:38 +00:00
|
|
|
showPreview(mParams.mWordToSaveView, message);
|
2010-12-06 12:26:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-24 05:44:46 +00:00
|
|
|
private final KeyboardActionListener mMoreSuggestionsListener =
|
|
|
|
new KeyboardActionListener.Adapter() {
|
|
|
|
@Override
|
|
|
|
public boolean onCustomRequest(int requestCode) {
|
|
|
|
final int index = requestCode;
|
|
|
|
final CharSequence word = mSuggestions.getWord(index);
|
|
|
|
mListener.pickSuggestionManually(index, word);
|
2011-09-01 08:50:51 +00:00
|
|
|
dismissMoreSuggestions();
|
2011-08-24 05:44:46 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onCancelInput() {
|
2011-09-01 08:50:51 +00:00
|
|
|
dismissMoreSuggestions();
|
2011-08-24 05:44:46 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
private final MoreKeysPanel.Controller mMoreSuggestionsController =
|
|
|
|
new MoreKeysPanel.Controller() {
|
|
|
|
@Override
|
|
|
|
public boolean dismissMoreKeysPanel() {
|
2011-09-01 08:50:51 +00:00
|
|
|
return dismissMoreSuggestions();
|
2011-08-24 05:44:46 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2011-09-01 08:50:51 +00:00
|
|
|
private boolean dismissMoreSuggestions() {
|
|
|
|
if (mMoreSuggestionsWindow.isShowing()) {
|
|
|
|
mMoreSuggestionsWindow.dismiss();
|
|
|
|
mKeyboardView.dimEntireKeyboard(false);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-08-06 07:45:58 +00:00
|
|
|
@Override
|
|
|
|
public boolean onLongClick(View view) {
|
2011-09-02 07:53:38 +00:00
|
|
|
final SuggestionsViewParams params = mParams;
|
2011-08-24 05:44:46 +00:00
|
|
|
if (params.mMoreSuggestionsAvailable) {
|
|
|
|
final int stripWidth = getWidth();
|
|
|
|
final View container = mMoreSuggestionsContainer;
|
|
|
|
final int maxWidth = stripWidth - container.getPaddingLeft()
|
|
|
|
- container.getPaddingRight();
|
|
|
|
final DisplayMetrics dm = getContext().getResources().getDisplayMetrics();
|
|
|
|
// TODO: Revise how we determine the height
|
|
|
|
final int maxHeight = dm.heightPixels - mKeyboardView.getHeight() - getHeight() * 3;
|
|
|
|
final MoreSuggestions.Builder builder = mMoreSuggestionsBuilder;
|
2011-09-01 05:54:28 +00:00
|
|
|
builder.layout(mSuggestions, params.mSuggestionsCountInStrip, maxWidth, maxHeight);
|
2011-08-24 05:44:46 +00:00
|
|
|
mMoreSuggestionsView.setKeyboard(builder.build());
|
|
|
|
container.measure(
|
|
|
|
ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
|
|
|
|
|
|
|
|
final MoreKeysPanel moreKeysPanel = mMoreSuggestionsView;
|
|
|
|
final int pointX = stripWidth / 2;
|
|
|
|
final int pointY = 0;
|
|
|
|
moreKeysPanel.showMoreKeysPanel(
|
|
|
|
this, mMoreSuggestionsController, pointX, pointY,
|
|
|
|
mMoreSuggestionsWindow, mMoreSuggestionsListener);
|
|
|
|
// TODO: Should figure out how to select the pointer tracker correctly.
|
|
|
|
final PointerTracker tracker = PointerTracker.getPointerTracker(0, moreKeysPanel);
|
|
|
|
final int translatedX = moreKeysPanel.translateX(tracker.getLastX());
|
|
|
|
final int translatedY = moreKeysPanel.translateY(tracker.getLastY());
|
|
|
|
tracker.onShowMoreKeysPanel(
|
|
|
|
translatedX, translatedY, SystemClock.uptimeMillis(), moreKeysPanel);
|
|
|
|
view.setPressed(false);
|
2011-09-01 08:50:51 +00:00
|
|
|
mKeyboardView.dimEntireKeyboard(true);
|
2011-08-06 07:45:58 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-12-06 12:26:38 +00:00
|
|
|
@Override
|
2011-08-24 05:44:46 +00:00
|
|
|
public boolean dispatchTouchEvent(MotionEvent me) {
|
|
|
|
if (!mMoreSuggestionsWindow.isShowing()) {
|
|
|
|
return super.dispatchTouchEvent(me);
|
|
|
|
}
|
|
|
|
final int action = me.getAction();
|
|
|
|
final long eventTime = me.getEventTime();
|
|
|
|
final int index = me.getActionIndex();
|
|
|
|
final int id = me.getPointerId(index);
|
|
|
|
final PointerTracker tracker = PointerTracker.getPointerTracker(id, mMoreSuggestionsView);
|
|
|
|
final int x = mMoreSuggestionsView.translateX((int)me.getX(index));
|
|
|
|
final int y = mMoreSuggestionsView.translateY((int)me.getY(index));
|
|
|
|
switch (action) {
|
|
|
|
case MotionEvent.ACTION_DOWN:
|
|
|
|
case MotionEvent.ACTION_POINTER_DOWN:
|
|
|
|
tracker.onDownEvent(x, y, eventTime, mMoreSuggestionsView);
|
|
|
|
break;
|
|
|
|
case MotionEvent.ACTION_UP:
|
|
|
|
case MotionEvent.ACTION_POINTER_UP:
|
|
|
|
tracker.onUpEvent(x, y, eventTime);
|
|
|
|
break;
|
|
|
|
case MotionEvent.ACTION_MOVE:
|
|
|
|
tracker.onMoveEvent(x, y, eventTime);
|
|
|
|
break;
|
|
|
|
case MotionEvent.ACTION_CANCEL:
|
|
|
|
tracker.onCancelEvent(x, y, eventTime);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2010-12-06 12:26:38 +00:00
|
|
|
public void onClick(View view) {
|
2011-09-02 07:53:38 +00:00
|
|
|
if (view == mParams.mWordToSaveView) {
|
2011-08-26 06:13:30 +00:00
|
|
|
addToDictionary((CharSequence)view.getTag());
|
2011-06-27 07:57:18 +00:00
|
|
|
clear();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-06-14 07:28:57 +00:00
|
|
|
final Object tag = view.getTag();
|
|
|
|
if (!(tag instanceof Integer))
|
|
|
|
return;
|
|
|
|
final int index = (Integer) tag;
|
2011-06-10 00:53:27 +00:00
|
|
|
if (index >= mSuggestions.size())
|
|
|
|
return;
|
2011-06-14 07:28:57 +00:00
|
|
|
|
2011-06-10 00:53:27 +00:00
|
|
|
final CharSequence word = mSuggestions.getWord(index);
|
2011-06-27 07:57:18 +00:00
|
|
|
mListener.pickSuggestionManually(index, word);
|
2009-03-13 22:11:42 +00:00
|
|
|
}
|
2011-01-18 08:22:01 +00:00
|
|
|
|
2009-03-31 21:50:26 +00:00
|
|
|
@Override
|
|
|
|
public void onDetachedFromWindow() {
|
|
|
|
super.onDetachedFromWindow();
|
2010-12-09 07:36:45 +00:00
|
|
|
mHandler.cancelAllMessages();
|
2009-03-31 21:50:26 +00:00
|
|
|
hidePreview();
|
|
|
|
}
|
2009-03-13 22:11:42 +00:00
|
|
|
}
|