2009-03-13 22:11:42 +00:00
|
|
|
/*
|
2010-12-06 12:26:38 +00:00
|
|
|
* Copyright (C) 2010 The Android Open Source Project
|
|
|
|
*
|
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;
|
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;
|
|
|
|
import android.view.Gravity;
|
|
|
|
import android.view.LayoutInflater;
|
|
|
|
import android.view.View;
|
2010-12-06 12:26:38 +00:00
|
|
|
import android.view.View.OnClickListener;
|
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-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-07-20 00:22:02 +00:00
|
|
|
public class CandidateView extends LinearLayout implements OnClickListener {
|
2009-03-13 22:11:42 +00:00
|
|
|
|
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}.
|
|
|
|
private static final int MAX_SUGGESTIONS = 18;
|
2011-06-30 01:09:21 +00:00
|
|
|
private static final int WRAP_CONTENT = ViewGroup.LayoutParams.WRAP_CONTENT;
|
2011-07-01 05:21:25 +00:00
|
|
|
private static final int MATCH_PARENT = ViewGroup.LayoutParams.MATCH_PARENT;
|
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-06-30 01:09:21 +00:00
|
|
|
private final ViewGroup mCandidatesStrip;
|
|
|
|
private final ViewGroup mCandidatesPaneControl;
|
|
|
|
private final TextView mExpandCandidatesPane;
|
|
|
|
private final TextView mCloseCandidatesPane;
|
2011-06-14 07:28:57 +00:00
|
|
|
private ViewGroup mCandidatesPane;
|
|
|
|
private ViewGroup mCandidatesPaneContainer;
|
|
|
|
private View mKeyboardView;
|
2011-06-30 01:09:21 +00:00
|
|
|
|
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-27 07:57:18 +00:00
|
|
|
private final View mTouchToSave;
|
|
|
|
private final TextView mWordToSave;
|
|
|
|
|
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-12-06 12:26:38 +00:00
|
|
|
private boolean mShowingAddToDictionary;
|
2010-02-03 23:35:49 +00:00
|
|
|
|
2011-08-04 05:38:22 +00:00
|
|
|
private final SuggestionsStripParams mStripParams;
|
|
|
|
private final SuggestionsPaneParams mPaneParams;
|
2011-07-01 13:23:46 +00:00
|
|
|
private static final float MIN_TEXT_XSCALE = 0.75f;
|
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-06-24 18:54:11 +00:00
|
|
|
private static class UiHandler extends StaticInnerHandlerWrapper<CandidateView> {
|
2010-12-09 07:36:45 +00:00
|
|
|
private static final int MSG_HIDE_PREVIEW = 0;
|
|
|
|
private static final int MSG_UPDATE_SUGGESTION = 1;
|
|
|
|
|
|
|
|
private static final long DELAY_HIDE_PREVIEW = 1000;
|
|
|
|
private static final long DELAY_UPDATE_SUGGESTION = 300;
|
|
|
|
|
2011-06-24 18:54:11 +00:00
|
|
|
public UiHandler(CandidateView outerInstance) {
|
|
|
|
super(outerInstance);
|
|
|
|
}
|
|
|
|
|
2010-12-06 12:26:38 +00:00
|
|
|
@Override
|
|
|
|
public void dispatchMessage(Message msg) {
|
2011-06-24 18:54:11 +00:00
|
|
|
final CandidateView candidateView = getOuterInstance();
|
2010-12-06 12:26:38 +00:00
|
|
|
switch (msg.what) {
|
|
|
|
case MSG_HIDE_PREVIEW:
|
2011-06-24 18:54:11 +00:00
|
|
|
candidateView.hidePreview();
|
2010-12-06 12:26:38 +00:00
|
|
|
break;
|
2010-12-09 07:36:45 +00:00
|
|
|
case MSG_UPDATE_SUGGESTION:
|
2011-06-24 18:54:11 +00:00
|
|
|
candidateView.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-08-04 05:38:22 +00:00
|
|
|
private static class CandidateViewParams {
|
2011-06-30 01:09:21 +00:00
|
|
|
public final int mPadding;
|
|
|
|
public final int mDividerWidth;
|
|
|
|
public final int mDividerHeight;
|
|
|
|
public final int mControlWidth;
|
2011-08-04 09:18:45 +00:00
|
|
|
public final int mCandidateStripHeight;
|
|
|
|
|
|
|
|
protected final List<TextView> mWords;
|
|
|
|
protected final List<View> mDividers;
|
|
|
|
protected final List<TextView> mInfos;
|
2011-08-04 05:38:22 +00:00
|
|
|
|
2011-08-04 09:18:45 +00:00
|
|
|
protected CandidateViewParams(List<TextView> words, List<View> dividers,
|
|
|
|
List<TextView> infos, View control) {
|
|
|
|
mWords = words;
|
|
|
|
mDividers = dividers;
|
|
|
|
mInfos = infos;
|
|
|
|
|
|
|
|
final TextView word = words.get(0);
|
|
|
|
final View divider = dividers.get(0);
|
2011-08-04 05:38:22 +00:00
|
|
|
mPadding = word.getCompoundPaddingLeft() + word.getCompoundPaddingRight();
|
|
|
|
divider.measure(WRAP_CONTENT, MATCH_PARENT);
|
|
|
|
mDividerWidth = divider.getMeasuredWidth();
|
|
|
|
mDividerHeight = divider.getMeasuredHeight();
|
|
|
|
mControlWidth = control.getMeasuredWidth();
|
2011-08-04 09:18:45 +00:00
|
|
|
|
|
|
|
final Resources res = word.getResources();
|
|
|
|
mCandidateStripHeight = res.getDimensionPixelOffset(R.dimen.candidate_strip_height);
|
2011-08-04 05:38:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private static class SuggestionsPaneParams extends CandidateViewParams {
|
2011-08-04 09:18:45 +00:00
|
|
|
public SuggestionsPaneParams(List<TextView> words, List<View> dividers,
|
|
|
|
List<TextView> infos, View control) {
|
|
|
|
super(words, dividers, infos, control);
|
|
|
|
}
|
|
|
|
|
|
|
|
public int layout(SuggestedWords suggestions, ViewGroup paneView, int from, int textColor,
|
|
|
|
int paneWidth) {
|
|
|
|
final int count = Math.min(mWords.size(), suggestions.size());
|
|
|
|
View centeringFrom = null, lastView = null;
|
|
|
|
int x = 0, y = 0;
|
|
|
|
for (int index = from; index < count; index++) {
|
|
|
|
final int pos = index;
|
|
|
|
final TextView word = mWords.get(pos);
|
|
|
|
final View divider = mDividers.get(pos);
|
|
|
|
final TextPaint paint = word.getPaint();
|
|
|
|
word.setTextColor(textColor);
|
|
|
|
final CharSequence styled = suggestions.getWord(pos);
|
|
|
|
|
|
|
|
final TextView info;
|
|
|
|
if (DBG) {
|
|
|
|
final CharSequence debugInfo = getDebugInfo(suggestions, index);
|
|
|
|
if (debugInfo != null) {
|
|
|
|
info = mInfos.get(index);
|
|
|
|
info.setText(debugInfo);
|
|
|
|
} else {
|
|
|
|
info = null;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
info = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
final CharSequence text;
|
|
|
|
final float scaleX;
|
|
|
|
paint.setTextScaleX(1.0f);
|
|
|
|
final int textWidth = getTextWidth(styled, paint);
|
|
|
|
int available = paneWidth - x - mPadding;
|
|
|
|
if (textWidth >= available) {
|
|
|
|
// Needs new row, centering previous row.
|
|
|
|
centeringCandidates(paneView, centeringFrom, lastView, x, paneWidth);
|
|
|
|
x = 0;
|
|
|
|
y += mCandidateStripHeight;
|
|
|
|
}
|
|
|
|
if (x != 0) {
|
|
|
|
// Add divider if this isn't the left most suggestion in current row.
|
|
|
|
paneView.addView(divider);
|
|
|
|
FrameLayoutCompatUtils.placeViewAt(divider, x, y
|
|
|
|
+ (mCandidateStripHeight - mDividerHeight) / 2, mDividerWidth,
|
|
|
|
mDividerHeight);
|
|
|
|
x += mDividerWidth;
|
|
|
|
}
|
|
|
|
available = paneWidth - x - mPadding;
|
|
|
|
text = getEllipsizedText(styled, available, paint);
|
|
|
|
scaleX = paint.getTextScaleX();
|
|
|
|
word.setText(text);
|
|
|
|
word.setTextScaleX(scaleX);
|
|
|
|
paneView.addView(word);
|
|
|
|
lastView = word;
|
|
|
|
if (x == 0)
|
|
|
|
centeringFrom = word;
|
|
|
|
word.measure(WRAP_CONTENT,
|
|
|
|
MeasureSpec.makeMeasureSpec(mCandidateStripHeight, MeasureSpec.EXACTLY));
|
|
|
|
final int width = word.getMeasuredWidth();
|
|
|
|
final int height = word.getMeasuredHeight();
|
|
|
|
FrameLayoutCompatUtils.placeViewAt(word, x, y + (mCandidateStripHeight - height)
|
|
|
|
/ 2, width, height);
|
|
|
|
x += width;
|
|
|
|
if (info != null) {
|
|
|
|
paneView.addView(info);
|
|
|
|
lastView = info;
|
|
|
|
info.measure(WRAP_CONTENT, WRAP_CONTENT);
|
|
|
|
final int infoWidth = info.getMeasuredWidth();
|
|
|
|
FrameLayoutCompatUtils.placeViewAt(info, x - infoWidth, y, infoWidth,
|
|
|
|
info.getMeasuredHeight());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (x != 0) {
|
|
|
|
// Centering last candidates row.
|
|
|
|
centeringCandidates(paneView, centeringFrom, lastView, x, paneWidth);
|
|
|
|
}
|
|
|
|
|
|
|
|
return count - from;
|
2011-08-04 05:38:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private static class SuggestionsStripParams extends CandidateViewParams {
|
|
|
|
private static final int DEFAULT_CANDIDATE_COUNT_IN_STRIP = 3;
|
2011-08-05 09:54:52 +00:00
|
|
|
private static final int DEFAULT_CENTER_CANDIDATE_PERCENTILE = 40;
|
2011-08-04 05:38:22 +00:00
|
|
|
private static final int PUNCTUATIONS_IN_STRIP = 6;
|
|
|
|
|
|
|
|
private final int mColorTypedWord;
|
|
|
|
private final int mColorAutoCorrect;
|
|
|
|
private final int mColorSuggestedCandidate;
|
|
|
|
private final int mCandidateCountInStrip;
|
2011-08-05 09:54:52 +00:00
|
|
|
private final float mCenterCandidateWeight;
|
|
|
|
private final int mCenterCandidateIndex;
|
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-04 09:18:45 +00:00
|
|
|
private final TextPaint mPaint;
|
2011-06-30 01:09:21 +00:00
|
|
|
private final int mAutoCorrectHighlight;
|
|
|
|
|
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-04 05:38:22 +00:00
|
|
|
public SuggestionsStripParams(Context context, AttributeSet attrs, int defStyle,
|
2011-08-04 09:18:45 +00:00
|
|
|
List<TextView> words, List<View> dividers, List<TextView> infos, View control) {
|
|
|
|
super(words, dividers, infos, control);
|
2011-08-04 05:38:22 +00:00
|
|
|
final TypedArray a = context.obtainStyledAttributes(
|
|
|
|
attrs, R.styleable.CandidateView, defStyle, R.style.CandidateViewStyle);
|
|
|
|
mAutoCorrectHighlight = a.getInt(R.styleable.CandidateView_autoCorrectHighlight, 0);
|
|
|
|
mColorTypedWord = a.getColor(R.styleable.CandidateView_colorTypedWord, 0);
|
|
|
|
mColorAutoCorrect = a.getColor(R.styleable.CandidateView_colorAutoCorrect, 0);
|
|
|
|
mColorSuggestedCandidate = a.getColor(R.styleable.CandidateView_colorSuggested, 0);
|
|
|
|
mCandidateCountInStrip = a.getInt(
|
|
|
|
R.styleable.CandidateView_candidateCountInStrip,
|
|
|
|
DEFAULT_CANDIDATE_COUNT_IN_STRIP);
|
2011-08-05 09:54:52 +00:00
|
|
|
mCenterCandidateWeight = a.getInt(
|
|
|
|
R.styleable.CandidateView_centerCandidatePercentile,
|
|
|
|
DEFAULT_CENTER_CANDIDATE_PERCENTILE) / 100.0f;
|
2011-08-04 05:38:22 +00:00
|
|
|
a.recycle();
|
|
|
|
|
2011-08-05 09:54:52 +00:00
|
|
|
mCenterCandidateIndex = mCandidateCountInStrip / 2;
|
|
|
|
|
2011-08-04 05:38:22 +00:00
|
|
|
mInvertedForegroundColorSpan = new ForegroundColorSpan(mColorTypedWord ^ 0x00ffffff);
|
|
|
|
mInvertedBackgroundColorSpan = new BackgroundColorSpan(mColorTypedWord);
|
|
|
|
|
2011-06-30 01:09:21 +00:00
|
|
|
mPaint = new TextPaint();
|
2011-08-04 05:38:22 +00:00
|
|
|
final float textSize = context.getResources().getDimension(R.dimen.candidate_text_size);
|
2011-06-30 01:09:21 +00:00
|
|
|
mPaint.setTextSize(textSize);
|
|
|
|
}
|
|
|
|
|
2011-08-04 09:18:45 +00:00
|
|
|
public int getTextColor() {
|
|
|
|
return mColorTypedWord;
|
2011-08-04 05:38:22 +00:00
|
|
|
}
|
|
|
|
|
2011-08-04 09:18:45 +00:00
|
|
|
private CharSequence getStyledCandidateWord(CharSequence word, boolean isAutoCorrect) {
|
2011-08-04 05:38:22 +00:00
|
|
|
if (!isAutoCorrect)
|
|
|
|
return word;
|
|
|
|
final int len = word.length();
|
|
|
|
final Spannable spannedWord = new SpannableString(word);
|
|
|
|
if ((mAutoCorrectHighlight & AUTO_CORRECT_BOLD) != 0)
|
|
|
|
spannedWord.setSpan(BOLD_SPAN, 0, len, Spanned.SPAN_INCLUSIVE_EXCLUSIVE);
|
|
|
|
if ((mAutoCorrectHighlight & AUTO_CORRECT_UNDERLINE) != 0)
|
|
|
|
spannedWord.setSpan(UNDERLINE_SPAN, 0, len, Spanned.SPAN_INCLUSIVE_EXCLUSIVE);
|
|
|
|
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;
|
|
|
|
if (index == mCenterCandidateIndex) {
|
|
|
|
return centerPos;
|
|
|
|
} else if (index == centerPos) {
|
|
|
|
return mCenterCandidateIndex;
|
|
|
|
} else {
|
2011-08-04 05:38:22 +00:00
|
|
|
return index;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-05 09:54:52 +00:00
|
|
|
private int getCandidateTextColor(int index, SuggestedWords suggestions, int pos) {
|
2011-08-04 05:38:22 +00:00
|
|
|
// TODO: Need to revisit this logic with bigram suggestions
|
|
|
|
final boolean isSuggestedCandidate = (pos != 0);
|
|
|
|
|
|
|
|
final int color;
|
2011-08-05 09:54:52 +00:00
|
|
|
if (index == mCenterCandidateIndex && willAutoCorrect(suggestions)) {
|
2011-08-04 05:38:22 +00:00
|
|
|
color = mColorAutoCorrect;
|
|
|
|
} else if (isSuggestedCandidate) {
|
|
|
|
color = mColorSuggestedCandidate;
|
|
|
|
} else {
|
|
|
|
color = mColorTypedWord;
|
|
|
|
}
|
2011-08-05 09:54:52 +00:00
|
|
|
|
|
|
|
final SuggestedWordInfo info = (pos < suggestions.size())
|
|
|
|
? suggestions.getInfo(pos) : null;
|
2011-08-04 05:38:22 +00:00
|
|
|
if (info != null && info.isPreviousSuggestedWord()) {
|
|
|
|
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) {
|
|
|
|
if ((mAutoCorrectHighlight & AUTO_CORRECT_INVERT) == 0)
|
|
|
|
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-08-04 09:18:45 +00:00
|
|
|
public int layout(SuggestedWords suggestions, ViewGroup stripView, ViewGroup paneView,
|
|
|
|
int stripWidth) {
|
2011-08-05 09:54:52 +00:00
|
|
|
if (suggestions.isPunctuationSuggestions()) {
|
|
|
|
return layoutPunctuationSuggestions(suggestions, stripView);
|
|
|
|
}
|
|
|
|
|
|
|
|
final int countInStrip = mCandidateCountInStrip;
|
|
|
|
setupTexts(suggestions, countInStrip);
|
|
|
|
final int maxWidth = (suggestions.size() <= countInStrip)
|
|
|
|
? stripWidth : stripWidth - mControlWidth;
|
|
|
|
|
|
|
|
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);
|
|
|
|
// Add divider if this isn't the left most suggestion in candidate strip.
|
|
|
|
stripView.addView(divider);
|
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
// Disable this candidate if the suggestion is null or empty.
|
|
|
|
word.setEnabled(!TextUtils.isEmpty(styled));
|
|
|
|
word.setTextColor(getCandidateTextColor(index, suggestions, pos));
|
|
|
|
final int width = getCandidateWidth(index, maxWidth);
|
|
|
|
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);
|
|
|
|
setLayoutWeight(word, getCandidateWeight(index), mCandidateStripHeight);
|
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);
|
|
|
|
paneView.addView(info);
|
|
|
|
info.measure(WRAP_CONTENT, 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-05 09:54:52 +00:00
|
|
|
FrameLayoutCompatUtils.placeViewAt(info, x, 0, infoWidth, y);
|
|
|
|
x += infoWidth * 2;
|
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-08-05 09:54:52 +00:00
|
|
|
return countInStrip;
|
2011-08-04 09:18:45 +00:00
|
|
|
}
|
|
|
|
|
2011-08-05 09:54:52 +00:00
|
|
|
private int getCandidateWidth(int index, int maxWidth) {
|
|
|
|
final int paddings = mPadding * mCandidateCountInStrip;
|
|
|
|
final int dividers = mDividerWidth * (mCandidateCountInStrip - 1);
|
|
|
|
final int availableWidth = maxWidth - paddings - dividers;
|
|
|
|
return (int)(availableWidth * getCandidateWeight(index));
|
|
|
|
}
|
2011-06-30 01:09:21 +00:00
|
|
|
|
2011-08-05 09:54:52 +00:00
|
|
|
private float getCandidateWeight(int index) {
|
|
|
|
if (index == mCenterCandidateIndex) {
|
|
|
|
return mCenterCandidateWeight;
|
|
|
|
} else {
|
|
|
|
// TODO: Revisit this for cases of 5 or more suggestions
|
|
|
|
return (1.0f - mCenterCandidateWeight) / (mCandidateCountInStrip - 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++) {
|
|
|
|
final CharSequence word = suggestions.getWord(pos);
|
|
|
|
final boolean isAutoCorrect = pos == 1 && willAutoCorrect(suggestions);
|
2011-08-04 05:38:22 +00:00
|
|
|
final CharSequence styled = getStyledCandidateWord(word, isAutoCorrect);
|
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-08-05 09:54:52 +00:00
|
|
|
private int layoutPunctuationSuggestions(SuggestedWords suggestions, ViewGroup stripView) {
|
|
|
|
final int countInStrip = Math.min(suggestions.size(), PUNCTUATIONS_IN_STRIP);
|
|
|
|
for (int index = 0; index < countInStrip; index++) {
|
|
|
|
if (index != 0) {
|
|
|
|
// Add divider if this isn't the left most suggestion in candidate strip.
|
|
|
|
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);
|
|
|
|
stripView.addView(word);
|
|
|
|
setLayoutWeight(word, 1.0f, mCandidateStripHeight);
|
|
|
|
}
|
|
|
|
return countInStrip;
|
2011-06-30 01:09:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-03-13 22:11:42 +00:00
|
|
|
/**
|
|
|
|
* Construct a CandidateView for showing suggested words for completion.
|
|
|
|
* @param context
|
|
|
|
* @param attrs
|
|
|
|
*/
|
|
|
|
public CandidateView(Context context, AttributeSet attrs) {
|
2011-06-15 02:49:57 +00:00
|
|
|
this(context, attrs, R.attr.candidateViewStyle);
|
|
|
|
}
|
|
|
|
|
|
|
|
public CandidateView(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);
|
|
|
|
if (defStyle != R.attr.candidateViewStyle) {
|
|
|
|
throw new IllegalArgumentException(
|
|
|
|
"can't accept defStyle other than R.attr.candidayeViewStyle: defStyle="
|
|
|
|
+ defStyle);
|
|
|
|
}
|
|
|
|
setBackgroundDrawable(LinearLayoutCompatUtils.getBackgroundDrawable(
|
|
|
|
context, attrs, defStyle, R.style.CandidateViewStyle));
|
2009-03-13 22:11:42 +00:00
|
|
|
|
2011-08-04 09:18:45 +00:00
|
|
|
final LayoutInflater inflater = LayoutInflater.from(context);
|
2011-06-14 07:28:57 +00:00
|
|
|
inflater.inflate(R.layout.candidates_strip, this);
|
|
|
|
|
|
|
|
mPreviewPopup = new PopupWindow(context);
|
2010-12-06 12:26:38 +00:00
|
|
|
mPreviewText = (TextView) inflater.inflate(R.layout.candidate_preview, null);
|
2010-12-10 06:24:28 +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-06-30 01:09:21 +00:00
|
|
|
mCandidatesStrip = (ViewGroup)findViewById(R.id.candidates_strip);
|
2011-08-05 09:54:52 +00:00
|
|
|
for (int pos = 0; pos < MAX_SUGGESTIONS; pos++) {
|
2011-06-30 01:09:21 +00:00
|
|
|
final TextView word = (TextView)inflater.inflate(R.layout.candidate_word, null);
|
2011-08-05 09:54:52 +00:00
|
|
|
word.setTag(pos);
|
2011-06-24 05:19:59 +00:00
|
|
|
word.setOnClickListener(this);
|
|
|
|
mWords.add(word);
|
2011-07-28 21:15:24 +00:00
|
|
|
final View divider = inflater.inflate(R.layout.candidate_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-06-30 01:09:21 +00:00
|
|
|
mInfos.add((TextView)inflater.inflate(R.layout.candidate_info, null));
|
2010-09-30 03:10:03 +00:00
|
|
|
}
|
2010-09-29 05:30:01 +00:00
|
|
|
|
2011-06-27 07:57:18 +00:00
|
|
|
mTouchToSave = findViewById(R.id.touch_to_save);
|
|
|
|
mWordToSave = (TextView)findViewById(R.id.word_to_save);
|
|
|
|
mWordToSave.setOnClickListener(this);
|
|
|
|
|
2011-07-04 06:42:20 +00:00
|
|
|
final TypedArray keyboardViewAttr = context.obtainStyledAttributes(
|
|
|
|
attrs, R.styleable.KeyboardView, R.attr.keyboardViewStyle, R.style.KeyboardView);
|
2011-07-07 00:42:03 +00:00
|
|
|
final Drawable expandBackground = keyboardViewAttr.getDrawable(
|
|
|
|
R.styleable.KeyboardView_keyBackground);
|
|
|
|
final Drawable closeBackground = keyboardViewAttr.getDrawable(
|
2011-07-04 06:42:20 +00:00
|
|
|
R.styleable.KeyboardView_keyBackground);
|
|
|
|
final int keyTextColor = keyboardViewAttr.getColor(
|
|
|
|
R.styleable.KeyboardView_keyTextColor, 0xFF000000);
|
|
|
|
keyboardViewAttr.recycle();
|
|
|
|
|
2011-06-30 01:09:21 +00:00
|
|
|
mCandidatesPaneControl = (ViewGroup)findViewById(R.id.candidates_pane_control);
|
|
|
|
mExpandCandidatesPane = (TextView)findViewById(R.id.expand_candidates_pane);
|
2011-07-07 00:42:03 +00:00
|
|
|
mExpandCandidatesPane.setBackgroundDrawable(expandBackground);
|
2011-07-04 06:42:20 +00:00
|
|
|
mExpandCandidatesPane.setTextColor(keyTextColor);
|
2011-06-14 07:28:57 +00:00
|
|
|
mExpandCandidatesPane.setOnClickListener(new OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View view) {
|
|
|
|
expandCandidatesPane();
|
|
|
|
}
|
|
|
|
});
|
2011-06-30 01:09:21 +00:00
|
|
|
mCloseCandidatesPane = (TextView)findViewById(R.id.close_candidates_pane);
|
2011-07-07 00:42:03 +00:00
|
|
|
mCloseCandidatesPane.setBackgroundDrawable(closeBackground);
|
2011-07-04 06:42:20 +00:00
|
|
|
mCloseCandidatesPane.setTextColor(keyTextColor);
|
2011-06-14 07:28:57 +00:00
|
|
|
mCloseCandidatesPane.setOnClickListener(new OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View view) {
|
|
|
|
closeCandidatesPane();
|
|
|
|
}
|
|
|
|
});
|
2011-06-30 01:09:21 +00:00
|
|
|
mCandidatesPaneControl.measure(WRAP_CONTENT, WRAP_CONTENT);
|
2011-06-15 02:49:57 +00:00
|
|
|
|
2011-08-04 05:38:22 +00:00
|
|
|
mStripParams = new SuggestionsStripParams(context, attrs, defStyle,
|
2011-08-04 09:18:45 +00:00
|
|
|
mWords, mDividers, mInfos, mCandidatesPaneControl);
|
|
|
|
mPaneParams = new SuggestionsPaneParams(
|
|
|
|
mWords, mDividers, mInfos, mCandidatesPaneControl);
|
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-06-14 07:28:57 +00:00
|
|
|
mKeyboardView = inputView.findViewById(R.id.keyboard_view);
|
2011-06-20 15:11:17 +00:00
|
|
|
mCandidatesPane = FrameLayoutCompatUtils.getPlacer(
|
|
|
|
(ViewGroup)inputView.findViewById(R.id.candidates_pane));
|
2011-06-14 07:28:57 +00:00
|
|
|
mCandidatesPane.setOnClickListener(this);
|
|
|
|
mCandidatesPaneContainer = (ViewGroup)inputView.findViewById(
|
|
|
|
R.id.candidates_pane_container);
|
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;
|
2011-07-01 12:19:31 +00:00
|
|
|
mExpandCandidatesPane.setEnabled(false);
|
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-06-14 07:28:57 +00:00
|
|
|
closeCandidatesPane();
|
2011-08-04 09:18:45 +00:00
|
|
|
if (mSuggestions.size() == 0)
|
2011-06-30 01:09:21 +00:00
|
|
|
return;
|
|
|
|
|
2011-08-04 09:18:45 +00:00
|
|
|
final int width = getWidth();
|
|
|
|
final int countInStrip = mStripParams.layout(
|
|
|
|
mSuggestions, mCandidatesStrip, mCandidatesPane, width);
|
|
|
|
final int countInPane = mPaneParams.layout(
|
|
|
|
mSuggestions, mCandidatesPane, countInStrip, mStripParams.getTextColor(), width);
|
2011-06-30 01:09:21 +00:00
|
|
|
|
2011-08-04 09:18:45 +00:00
|
|
|
if (countInPane <= 0 && !DBG) {
|
2011-06-30 01:09:21 +00:00
|
|
|
mCandidatesPaneControl.setVisibility(GONE);
|
|
|
|
} else {
|
|
|
|
mCandidatesPaneControl.setVisibility(VISIBLE);
|
|
|
|
mExpandCandidatesPane.setVisibility(VISIBLE);
|
2011-07-01 12:19:31 +00:00
|
|
|
mExpandCandidatesPane.setEnabled(true);
|
2011-06-30 01:09:21 +00:00
|
|
|
}
|
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-04 09:18:45 +00:00
|
|
|
private static void centeringCandidates(ViewGroup parent, View from, View to, int width,
|
|
|
|
int parentWidth) {
|
|
|
|
final int fromIndex = parent.indexOfChild(from);
|
|
|
|
final int toIndex = parent.indexOfChild(to);
|
|
|
|
final int offset = (parentWidth - width) / 2;
|
2011-06-14 07:28:57 +00:00
|
|
|
for (int index = fromIndex; index <= toIndex; index++) {
|
2011-08-04 09:18:45 +00:00
|
|
|
offsetMargin(parent.getChildAt(index), offset, 0);
|
2011-06-14 07:28:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private static void offsetMargin(View v, int dx, int dy) {
|
2011-06-15 01:48:53 +00:00
|
|
|
if (v == null)
|
|
|
|
return;
|
2011-06-24 05:19:59 +00:00
|
|
|
final ViewGroup.LayoutParams lp = v.getLayoutParams();
|
2011-06-14 07:28:57 +00:00
|
|
|
if (lp instanceof ViewGroup.MarginLayoutParams) {
|
2011-06-24 05:19:59 +00:00
|
|
|
final ViewGroup.MarginLayoutParams mlp = (ViewGroup.MarginLayoutParams)lp;
|
2011-06-14 07:28:57 +00:00
|
|
|
mlp.setMargins(mlp.leftMargin + dx, mlp.topMargin + dy, 0, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-06-30 01:09:21 +00:00
|
|
|
private static CharSequence getEllipsizedText(CharSequence text, int maxWidth,
|
|
|
|
TextPaint paint) {
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-06-14 07:28:57 +00:00
|
|
|
private void expandCandidatesPane() {
|
2011-06-30 01:09:21 +00:00
|
|
|
mExpandCandidatesPane.setVisibility(GONE);
|
|
|
|
mCloseCandidatesPane.setVisibility(VISIBLE);
|
2011-06-14 07:28:57 +00:00
|
|
|
mCandidatesPaneContainer.setMinimumHeight(mKeyboardView.getMeasuredHeight());
|
2011-06-30 01:09:21 +00:00
|
|
|
mCandidatesPaneContainer.setVisibility(VISIBLE);
|
|
|
|
mKeyboardView.setVisibility(GONE);
|
2011-06-14 07:28:57 +00:00
|
|
|
}
|
2010-12-06 12:26:38 +00:00
|
|
|
|
2011-06-14 07:28:57 +00:00
|
|
|
private void closeCandidatesPane() {
|
2011-06-30 01:09:21 +00:00
|
|
|
mExpandCandidatesPane.setVisibility(VISIBLE);
|
|
|
|
mCloseCandidatesPane.setVisibility(GONE);
|
|
|
|
mCandidatesPaneContainer.setVisibility(GONE);
|
|
|
|
mKeyboardView.setVisibility(VISIBLE);
|
2009-03-13 22:11:42 +00:00
|
|
|
}
|
|
|
|
|
2010-12-09 07:36:45 +00:00
|
|
|
public void onAutoCorrectionInverted(CharSequence autoCorrectedWord) {
|
2011-08-04 05:38:22 +00:00
|
|
|
final CharSequence inverted = mStripParams.getInvertedText(autoCorrectedWord);
|
|
|
|
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() {
|
|
|
|
return mShowingAddToDictionary;
|
|
|
|
}
|
|
|
|
|
2010-02-11 01:45:35 +00:00
|
|
|
public void showAddToDictionaryHint(CharSequence word) {
|
2011-06-27 07:57:18 +00:00
|
|
|
mWordToSave.setText(word);
|
2010-02-11 01:45:35 +00:00
|
|
|
mShowingAddToDictionary = true;
|
2011-06-30 01:09:21 +00:00
|
|
|
mCandidatesStrip.setVisibility(GONE);
|
2011-07-01 16:59:49 +00:00
|
|
|
mCandidatesPaneControl.setVisibility(GONE);
|
2011-06-30 01:09:21 +00:00
|
|
|
mTouchToSave.setVisibility(VISIBLE);
|
2010-02-11 01:45:35 +00:00
|
|
|
}
|
|
|
|
|
2010-08-03 18:47:42 +00:00
|
|
|
public boolean dismissAddToDictionaryHint() {
|
|
|
|
if (!mShowingAddToDictionary) return false;
|
|
|
|
clear();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
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-02-11 01:45:35 +00:00
|
|
|
mShowingAddToDictionary = false;
|
2010-12-09 07:36:45 +00:00
|
|
|
mShowingAutoCorrectionInverted = false;
|
2011-06-30 01:09:21 +00:00
|
|
|
mTouchToSave.setVisibility(GONE);
|
2011-07-07 08:56:41 +00:00
|
|
|
mCandidatesStrip.setVisibility(VISIBLE);
|
2011-06-30 01:09:21 +00:00
|
|
|
mCandidatesStrip.removeAllViews();
|
2011-06-14 07:28:57 +00:00
|
|
|
mCandidatesPane.removeAllViews();
|
2011-07-07 00:57:24 +00:00
|
|
|
closeCandidatesPane();
|
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 showPreview(int index, CharSequence word) {
|
|
|
|
if (TextUtils.isEmpty(word))
|
|
|
|
return;
|
|
|
|
|
|
|
|
final TextView previewText = mPreviewText;
|
2011-08-04 05:38:22 +00:00
|
|
|
previewText.setTextColor(mStripParams.mColorTypedWord);
|
2010-12-06 12:26:38 +00:00
|
|
|
previewText.setText(word);
|
|
|
|
previewText.measure(MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED),
|
|
|
|
MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED));
|
2011-06-07 03:30:28 +00:00
|
|
|
View v = mWords.get(index);
|
2010-12-06 12:26:38 +00:00
|
|
|
final int[] offsetInWindow = new int[2];
|
|
|
|
v.getLocationInWindow(offsetInWindow);
|
|
|
|
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())) {
|
2010-12-06 12:26:38 +00:00
|
|
|
showPreview(0, getContext().getString(R.string.added_word, word));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(View view) {
|
2011-06-27 07:57:18 +00:00
|
|
|
if (view == mWordToSave) {
|
|
|
|
addToDictionary(((TextView)view).getText());
|
|
|
|
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);
|
2011-06-14 07:28:57 +00:00
|
|
|
// Because some punctuation letters are not treated as word separator depending on locale,
|
|
|
|
// {@link #setSuggestions} might not be called and candidates pane left opened.
|
|
|
|
closeCandidatesPane();
|
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
|
|
|
}
|