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.
|
|
|
|
*/
|
|
|
|
|
2011-12-16 02:26:14 +00:00
|
|
|
package com.android.inputmethod.latin.suggestions;
|
2009-03-13 22:11:42 +00:00
|
|
|
|
|
|
|
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-09-16 06:30:41 +00:00
|
|
|
import android.graphics.Bitmap;
|
|
|
|
import android.graphics.Canvas;
|
2011-01-19 08:29:27 +00:00
|
|
|
import android.graphics.Color;
|
2011-09-16 06:30:41 +00:00
|
|
|
import android.graphics.Paint;
|
|
|
|
import android.graphics.Paint.Align;
|
|
|
|
import android.graphics.Rect;
|
2009-03-13 22:11:42 +00:00
|
|
|
import android.graphics.Typeface;
|
2011-09-16 06:30:41 +00:00
|
|
|
import android.graphics.drawable.BitmapDrawable;
|
2011-09-29 05:11:21 +00:00
|
|
|
import android.graphics.drawable.ColorDrawable;
|
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;
|
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 05:04:50 +00:00
|
|
|
import android.text.style.CharacterStyle;
|
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-09-20 10:17:19 +00:00
|
|
|
import android.view.GestureDetector;
|
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;
|
2011-09-05 07:15:28 +00:00
|
|
|
import android.widget.RelativeLayout;
|
2009-03-13 22:11:42 +00:00
|
|
|
import android.widget.TextView;
|
|
|
|
|
2011-06-20 15:11:17 +00:00
|
|
|
import com.android.inputmethod.compat.FrameLayoutCompatUtils;
|
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-12-16 02:26:14 +00:00
|
|
|
import com.android.inputmethod.latin.LatinImeLogger;
|
|
|
|
import com.android.inputmethod.latin.R;
|
|
|
|
import com.android.inputmethod.latin.StaticInnerHandlerWrapper;
|
|
|
|
import com.android.inputmethod.latin.SuggestedWords;
|
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-05 07:15:28 +00:00
|
|
|
public class SuggestionsView extends RelativeLayout 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-12-16 02:26:14 +00:00
|
|
|
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 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-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;
|
|
|
|
|
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
|
|
|
|
|
|
|
public void cancelHidePreview() {
|
|
|
|
removeMessages(MSG_HIDE_PREVIEW);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void cancelAllMessages() {
|
|
|
|
cancelHidePreview();
|
|
|
|
}
|
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;
|
2011-09-05 08:22:34 +00:00
|
|
|
private static final int DEFAULT_MAX_MORE_SUGGESTIONS_ROW = 2;
|
2011-09-08 02:41:46 +00:00
|
|
|
private static final int PUNCTUATIONS_IN_STRIP = 5;
|
2011-09-02 07:53:38 +00:00
|
|
|
|
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-09-05 08:22:34 +00:00
|
|
|
public final int mMaxMoreSuggestionsRow;
|
|
|
|
public final float mMinMoreSuggestionsWidth;
|
2011-09-06 09:33:01 +00:00
|
|
|
public final int mMoreSuggestionsBottomGap;
|
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
|
|
|
|
2011-12-15 07:38:17 +00:00
|
|
|
private final int mColorValidTypedWord;
|
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;
|
2011-09-13 03:35:52 +00:00
|
|
|
private final float mAlphaObsoleted;
|
2011-09-01 05:54:28 +00:00
|
|
|
private final float mCenterSuggestionWeight;
|
|
|
|
private final int mCenterSuggestionIndex;
|
|
|
|
private final Drawable mMoreSuggestionsHint;
|
2011-09-23 21:59:33 +00:00
|
|
|
private static final String MORE_SUGGESTIONS_HINT = "\u2026";
|
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 static final int AUTO_CORRECT_BOLD = 0x01;
|
|
|
|
private static final int AUTO_CORRECT_UNDERLINE = 0x02;
|
2011-09-21 06:04:50 +00:00
|
|
|
private static final int VALID_TYPED_WORD_BOLD = 0x04;
|
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;
|
|
|
|
|
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);
|
2011-12-15 07:38:17 +00:00
|
|
|
final float alphaValidTypedWord = getPercent(a,
|
|
|
|
R.styleable.SuggestionsView_alphaValidTypedWord, 100);
|
2011-09-13 03:35:52 +00:00
|
|
|
final float alphaTypedWord = getPercent(a,
|
|
|
|
R.styleable.SuggestionsView_alphaTypedWord, 100);
|
|
|
|
final float alphaAutoCorrect = getPercent(a,
|
|
|
|
R.styleable.SuggestionsView_alphaAutoCorrect, 100);
|
|
|
|
final float alphaSuggested = getPercent(a,
|
|
|
|
R.styleable.SuggestionsView_alphaSuggested, 100);
|
|
|
|
mAlphaObsoleted = getPercent(a, R.styleable.SuggestionsView_alphaSuggested, 100);
|
2011-12-15 07:38:17 +00:00
|
|
|
mColorValidTypedWord = applyAlpha(
|
|
|
|
a.getColor(R.styleable.SuggestionsView_colorValidTypedWord, 0),
|
|
|
|
alphaValidTypedWord);
|
2011-09-13 03:35:52 +00:00
|
|
|
mColorTypedWord = applyAlpha(
|
|
|
|
a.getColor(R.styleable.SuggestionsView_colorTypedWord, 0), alphaTypedWord);
|
|
|
|
mColorAutoCorrect = applyAlpha(
|
|
|
|
a.getColor(R.styleable.SuggestionsView_colorAutoCorrect, 0), alphaAutoCorrect);
|
|
|
|
mColorSuggested = applyAlpha(
|
|
|
|
a.getColor(R.styleable.SuggestionsView_colorSuggested, 0), alphaSuggested);
|
2011-09-01 05:54:28 +00:00
|
|
|
mSuggestionsCountInStrip = a.getInt(
|
|
|
|
R.styleable.SuggestionsView_suggestionsCountInStrip,
|
|
|
|
DEFAULT_SUGGESTIONS_COUNT_IN_STRIP);
|
2011-09-13 03:35:52 +00:00
|
|
|
mCenterSuggestionWeight = getPercent(a,
|
2011-09-01 05:54:28 +00:00
|
|
|
R.styleable.SuggestionsView_centerSuggestionPercentile,
|
2011-09-13 03:35:52 +00:00
|
|
|
DEFAULT_CENTER_SUGGESTION_PERCENTILE);
|
2011-09-05 08:22:34 +00:00
|
|
|
mMaxMoreSuggestionsRow = a.getInt(
|
|
|
|
R.styleable.SuggestionsView_maxMoreSuggestionsRow,
|
|
|
|
DEFAULT_MAX_MORE_SUGGESTIONS_ROW);
|
|
|
|
mMinMoreSuggestionsWidth = getRatio(a,
|
|
|
|
R.styleable.SuggestionsView_minMoreSuggestionsWidth);
|
2011-08-04 05:38:22 +00:00
|
|
|
a.recycle();
|
|
|
|
|
2011-09-16 06:30:41 +00:00
|
|
|
mMoreSuggestionsHint = getMoreSuggestionsHint(res,
|
|
|
|
res.getDimension(R.dimen.more_suggestions_hint_text_size), mColorAutoCorrect);
|
2011-09-01 05:54:28 +00:00
|
|
|
mCenterSuggestionIndex = mSuggestionsCountInStrip / 2;
|
2011-09-06 09:33:01 +00:00
|
|
|
mMoreSuggestionsBottomGap = res.getDimensionPixelOffset(
|
|
|
|
R.dimen.more_suggestions_bottom_gap);
|
2011-08-05 09:54:52 +00:00
|
|
|
|
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-06-30 01:09:21 +00:00
|
|
|
}
|
|
|
|
|
2011-09-16 06:30:41 +00:00
|
|
|
private static Drawable getMoreSuggestionsHint(Resources res, float textSize, 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();
|
2011-09-24 00:38:45 +00:00
|
|
|
paint.getTextBounds(MORE_SUGGESTIONS_HINT, 0, MORE_SUGGESTIONS_HINT.length(), bounds);
|
2011-09-16 06:30:41 +00:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2011-09-13 03:35:52 +00:00
|
|
|
// Read integer value in TypedArray as percent.
|
|
|
|
private static float getPercent(TypedArray a, int index, int defValue) {
|
|
|
|
return a.getInt(index, defValue) / 100.0f;
|
|
|
|
}
|
|
|
|
|
2011-09-05 08:22:34 +00:00
|
|
|
// Read fraction value in TypedArray as float.
|
|
|
|
private static float getRatio(TypedArray a, int index) {
|
|
|
|
return a.getFraction(index, 1000, 1000, 1) / 1000.0f;
|
|
|
|
}
|
|
|
|
|
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);
|
2012-03-05 05:19:35 +00:00
|
|
|
final boolean isAutoCorrect = pos == 1 && suggestions.willAutoCorrect();
|
2011-08-17 01:18:58 +00:00
|
|
|
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 int getWordPosition(int index, SuggestedWords suggestions) {
|
|
|
|
// TODO: This works for 3 suggestions. Revisit this algorithm when there are 5 or more
|
|
|
|
// suggestions.
|
2012-03-05 05:19:35 +00:00
|
|
|
final int centerPos = suggestions.willAutoCorrect() ? 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;
|
2012-03-05 05:19:35 +00:00
|
|
|
if (index == mCenterSuggestionIndex && suggestions.willAutoCorrect()) {
|
2011-08-04 05:38:22 +00:00
|
|
|
color = mColorAutoCorrect;
|
2011-12-15 07:38:17 +00:00
|
|
|
} else if (index == mCenterSuggestionIndex && suggestions.mTypedWordValid) {
|
|
|
|
color = mColorValidTypedWord;
|
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-10-13 05:25:26 +00:00
|
|
|
if (LatinImeLogger.sDBG) {
|
2012-03-02 10:49:24 +00:00
|
|
|
if (index == mCenterSuggestionIndex && suggestions.mHasAutoCorrectionCandidate
|
2012-03-05 07:56:58 +00:00
|
|
|
&& suggestions.mShouldBlockAutoCorrectionBySafetyNet) {
|
2011-10-13 05:25:26 +00:00
|
|
|
return 0xFFFF0000;
|
|
|
|
}
|
|
|
|
}
|
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-09-13 03:35:52 +00:00
|
|
|
return applyAlpha(color, mAlphaObsoleted);
|
2011-08-04 05:38:22 +00:00
|
|
|
} 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));
|
|
|
|
}
|
|
|
|
|
2011-10-18 03:08:49 +00:00
|
|
|
private static void addDivider(final ViewGroup stripView, final View divider) {
|
|
|
|
stripView.addView(divider);
|
|
|
|
final LinearLayout.LayoutParams params =
|
|
|
|
(LinearLayout.LayoutParams)divider.getLayoutParams();
|
|
|
|
params.gravity = Gravity.CENTER;
|
|
|
|
}
|
|
|
|
|
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) {
|
2012-03-05 07:56:58 +00:00
|
|
|
if (suggestions.mIsPunctuationSuggestions) {
|
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-10-18 03:08:49 +00:00
|
|
|
addDivider(stripView, 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-10-18 03:08:49 +00:00
|
|
|
addDivider(stripView, mDividers.get(index));
|
2011-08-05 09:54:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
final TextView word = mWords.get(index);
|
|
|
|
word.setEnabled(true);
|
2011-12-15 07:38:17 +00:00
|
|
|
word.setTextColor(mColorAutoCorrect);
|
2011-08-05 09:54:52 +00:00
|
|
|
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,
|
2011-10-27 15:33:15 +00:00
|
|
|
int stripWidth, CharSequence hintText) {
|
2011-08-26 06:13:30 +00:00
|
|
|
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;
|
2011-10-27 15:33:15 +00:00
|
|
|
final float hintScaleX = getTextScaleX(hintText, hintWidth, hintView.getPaint());
|
|
|
|
hintView.setText(hintText);
|
2011-08-26 06:13:30 +00:00
|
|
|
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-12-15 10:12:41 +00:00
|
|
|
|
|
|
|
private static CharSequence getDebugInfo(SuggestedWords suggestions, int pos) {
|
|
|
|
if (DBG && pos < suggestions.size()) {
|
|
|
|
final SuggestedWordInfo wordInfo = suggestions.getInfo(pos);
|
|
|
|
if (wordInfo != null) {
|
|
|
|
final CharSequence debugInfo = wordInfo.getDebugString();
|
|
|
|
if (!TextUtils.isEmpty(debugInfo)) {
|
|
|
|
return debugInfo;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static void setLayoutWeight(View v, float weight, int height) {
|
|
|
|
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(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;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static CharSequence getEllipsizedText(CharSequence text, int maxWidth,
|
|
|
|
TextPaint paint) {
|
|
|
|
if (text == null) return null;
|
|
|
|
paint.setTextScaleX(1.0f);
|
|
|
|
final int width = getTextWidth(text, paint);
|
|
|
|
if (width <= maxWidth) {
|
|
|
|
return text;
|
|
|
|
}
|
|
|
|
final float scaleX = maxWidth / (float)width;
|
|
|
|
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).
|
|
|
|
final CharSequence ellipsized = TextUtils.ellipsize(
|
|
|
|
text, paint, maxWidth / MIN_TEXT_XSCALE, TextUtils.TruncateAt.MIDDLE);
|
|
|
|
paint.setTextScaleX(MIN_TEXT_XSCALE);
|
|
|
|
return ellipsized;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static int getTextWidth(CharSequence text, TextPaint paint) {
|
|
|
|
if (TextUtils.isEmpty(text)) return 0;
|
|
|
|
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(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-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-09-05 07:15:28 +00:00
|
|
|
super(context, attrs, defStyle);
|
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
|
|
|
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);
|
2011-09-29 05:11:21 +00:00
|
|
|
|
|
|
|
final PopupWindow moreWindow = new PopupWindow(context);
|
|
|
|
moreWindow.setWindowLayoutMode(
|
2011-08-24 05:44:46 +00:00
|
|
|
ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
|
2011-09-29 05:11:21 +00:00
|
|
|
moreWindow.setBackgroundDrawable(new ColorDrawable(android.R.color.transparent));
|
|
|
|
moreWindow.setInputMethodMode(PopupWindow.INPUT_METHOD_NOT_NEEDED);
|
|
|
|
moreWindow.setFocusable(true);
|
|
|
|
moreWindow.setOutsideTouchable(true);
|
|
|
|
moreWindow.setOnDismissListener(new PopupWindow.OnDismissListener() {
|
|
|
|
@Override
|
|
|
|
public void onDismiss() {
|
|
|
|
mKeyboardView.dimEntireKeyboard(false);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
mMoreSuggestionsWindow = moreWindow;
|
|
|
|
|
2011-09-06 02:37:51 +00:00
|
|
|
final Resources res = context.getResources();
|
|
|
|
mMoreSuggestionsModalTolerance = res.getDimensionPixelOffset(
|
|
|
|
R.dimen.more_suggestions_modal_tolerance);
|
2011-09-20 10:17:19 +00:00
|
|
|
mMoreSuggestionsSlidingDetector = new GestureDetector(
|
|
|
|
context, mMoreSuggestionsSlidingListener);
|
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) {
|
2011-09-21 06:04:50 +00:00
|
|
|
if (suggestions == null || suggestions.size() == 0)
|
2010-12-10 07:05:22 +00:00
|
|
|
return;
|
2010-12-09 07:36:45 +00:00
|
|
|
|
2010-12-06 12:26:38 +00:00
|
|
|
clear();
|
2011-09-21 06:04:50 +00:00
|
|
|
mSuggestions = suggestions;
|
2011-09-05 07:15:28 +00:00
|
|
|
mParams.layout(mSuggestions, mSuggestionsStrip, this, getWidth());
|
2011-08-04 09:18:45 +00:00
|
|
|
}
|
2011-06-30 01:09:21 +00:00
|
|
|
|
2011-06-25 18:00:51 +00:00
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2011-10-27 15:33:15 +00:00
|
|
|
public void showAddToDictionaryHint(CharSequence word, CharSequence hintText) {
|
2011-08-26 06:13:30 +00:00
|
|
|
clear();
|
2011-10-27 15:33:15 +00:00
|
|
|
mParams.layoutAddToDictionaryHint(word, mSuggestionsStrip, getWidth(), hintText);
|
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() {
|
2011-09-01 05:54:28 +00:00
|
|
|
mSuggestionsStrip.removeAllViews();
|
2011-09-05 07:15:28 +00:00
|
|
|
removeAllViews();
|
|
|
|
addView(mSuggestionsStrip);
|
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
|
|
|
|
|
|
|
private void addToDictionary(CharSequence word) {
|
2011-12-07 06:53:37 +00:00
|
|
|
mListener.addWordToDictionary(word.toString());
|
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();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-09-09 00:33:35 +00:00
|
|
|
public boolean handleBack() {
|
|
|
|
return dismissMoreSuggestions();
|
|
|
|
}
|
|
|
|
|
2011-08-06 07:45:58 +00:00
|
|
|
@Override
|
|
|
|
public boolean onLongClick(View view) {
|
2011-09-20 10:17:19 +00:00
|
|
|
return showMoreSuggestions();
|
|
|
|
}
|
|
|
|
|
|
|
|
private boolean showMoreSuggestions() {
|
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 MoreSuggestions.Builder builder = mMoreSuggestionsBuilder;
|
2011-09-05 08:22:34 +00:00
|
|
|
builder.layout(mSuggestions, params.mSuggestionsCountInStrip, maxWidth,
|
|
|
|
(int)(maxWidth * params.mMinMoreSuggestionsWidth),
|
|
|
|
params.mMaxMoreSuggestionsRow);
|
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;
|
2011-09-06 09:33:01 +00:00
|
|
|
final int pointY = -params.mMoreSuggestionsBottomGap;
|
2011-08-24 05:44:46 +00:00
|
|
|
moreKeysPanel.showMoreKeysPanel(
|
|
|
|
this, mMoreSuggestionsController, pointX, pointY,
|
|
|
|
mMoreSuggestionsWindow, mMoreSuggestionsListener);
|
2011-09-16 09:24:03 +00:00
|
|
|
mMoreSuggestionsMode = MORE_SUGGESTIONS_CHECKING_MODAL_OR_SLIDING;
|
2011-09-06 02:37:51 +00:00
|
|
|
mOriginX = mLastX;
|
|
|
|
mOriginY = mLastY;
|
2011-09-01 08:50:51 +00:00
|
|
|
mKeyboardView.dimEntireKeyboard(true);
|
2011-09-20 10:17:19 +00:00
|
|
|
for (int i = 0; i < params.mSuggestionsCountInStrip; i++) {
|
|
|
|
mWords.get(i).setPressed(false);
|
|
|
|
}
|
2011-08-06 07:45:58 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-09-06 02:37:51 +00:00
|
|
|
// Working variables for onLongClick and dispatchTouchEvent.
|
2011-09-16 09:24:03 +00:00
|
|
|
private int mMoreSuggestionsMode = MORE_SUGGESTIONS_IN_MODAL_MODE;
|
|
|
|
private static final int MORE_SUGGESTIONS_IN_MODAL_MODE = 0;
|
|
|
|
private static final int MORE_SUGGESTIONS_CHECKING_MODAL_OR_SLIDING = 1;
|
|
|
|
private static final int MORE_SUGGESTIONS_IN_SLIDING_MODE = 2;
|
2011-09-06 02:37:51 +00:00
|
|
|
private int mLastX;
|
|
|
|
private int mLastY;
|
|
|
|
private int mOriginX;
|
|
|
|
private int mOriginY;
|
|
|
|
private final int mMoreSuggestionsModalTolerance;
|
2011-09-20 10:17:19 +00:00
|
|
|
private final GestureDetector mMoreSuggestionsSlidingDetector;
|
|
|
|
private final GestureDetector.OnGestureListener mMoreSuggestionsSlidingListener =
|
|
|
|
new GestureDetector.SimpleOnGestureListener() {
|
|
|
|
@Override
|
|
|
|
public boolean onScroll(MotionEvent down, MotionEvent me, float deltaX, float deltaY) {
|
|
|
|
final float dy = me.getY() - down.getY();
|
|
|
|
if (deltaY > 0 && dy < 0) {
|
|
|
|
return showMoreSuggestions();
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
};
|
2011-09-06 02:37:51 +00:00
|
|
|
|
2010-12-06 12:26:38 +00:00
|
|
|
@Override
|
2011-08-24 05:44:46 +00:00
|
|
|
public boolean dispatchTouchEvent(MotionEvent me) {
|
2011-09-16 09:24:03 +00:00
|
|
|
if (!mMoreSuggestionsWindow.isShowing()
|
|
|
|
|| mMoreSuggestionsMode == MORE_SUGGESTIONS_IN_MODAL_MODE) {
|
2011-09-06 02:37:51 +00:00
|
|
|
mLastX = (int)me.getX();
|
|
|
|
mLastY = (int)me.getY();
|
2011-09-20 10:17:19 +00:00
|
|
|
if (mMoreSuggestionsSlidingDetector.onTouchEvent(me)) {
|
|
|
|
return true;
|
|
|
|
}
|
2011-08-24 05:44:46 +00:00
|
|
|
return super.dispatchTouchEvent(me);
|
|
|
|
}
|
2011-09-06 06:25:58 +00:00
|
|
|
|
|
|
|
final MoreKeysPanel moreKeysPanel = mMoreSuggestionsView;
|
2011-08-24 05:44:46 +00:00
|
|
|
final int action = me.getAction();
|
|
|
|
final long eventTime = me.getEventTime();
|
|
|
|
final int index = me.getActionIndex();
|
|
|
|
final int id = me.getPointerId(index);
|
2011-09-06 06:25:58 +00:00
|
|
|
final PointerTracker tracker = PointerTracker.getPointerTracker(id, moreKeysPanel);
|
|
|
|
final int x = (int)me.getX(index);
|
|
|
|
final int y = (int)me.getY(index);
|
|
|
|
final int translatedX = moreKeysPanel.translateX(x);
|
|
|
|
final int translatedY = moreKeysPanel.translateY(y);
|
|
|
|
|
2011-09-16 09:24:03 +00:00
|
|
|
if (mMoreSuggestionsMode == MORE_SUGGESTIONS_CHECKING_MODAL_OR_SLIDING) {
|
2011-09-13 03:50:12 +00:00
|
|
|
if (Math.abs(x - mOriginX) >= mMoreSuggestionsModalTolerance
|
|
|
|
|| mOriginY - y >= mMoreSuggestionsModalTolerance) {
|
|
|
|
// Decided to be in the sliding input mode only when the touch point has been moved
|
|
|
|
// upward.
|
2011-09-16 09:24:03 +00:00
|
|
|
mMoreSuggestionsMode = MORE_SUGGESTIONS_IN_SLIDING_MODE;
|
2011-10-26 11:54:35 +00:00
|
|
|
tracker.onShowMoreKeysPanel(translatedX, translatedY, moreKeysPanel);
|
2011-09-06 02:37:51 +00:00
|
|
|
} else if (action == MotionEvent.ACTION_UP || action == MotionEvent.ACTION_POINTER_UP) {
|
|
|
|
// Decided to be in the modal input mode
|
2011-09-16 09:24:03 +00:00
|
|
|
mMoreSuggestionsMode = MORE_SUGGESTIONS_IN_MODAL_MODE;
|
2011-09-06 02:37:51 +00:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-09-16 09:24:03 +00:00
|
|
|
// MORE_SUGGESTIONS_IN_SLIDING_MODE
|
2011-09-06 06:25:58 +00:00
|
|
|
tracker.processMotionEvent(action, translatedX, translatedY, eventTime, moreKeysPanel);
|
2011-08-24 05:44:46 +00:00
|
|
|
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
|
2011-09-27 06:18:02 +00:00
|
|
|
protected void onDetachedFromWindow() {
|
2009-03-31 21:50:26 +00:00
|
|
|
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
|
|
|
}
|