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;
|
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;
|
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;
|
2010-12-09 05:04:50 +00:00
|
|
|
import android.text.style.StyleSpan;
|
|
|
|
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;
|
|
|
|
import android.view.View.OnLongClickListener;
|
2010-12-10 06:24:28 +00:00
|
|
|
import android.view.ViewGroup;
|
2011-06-15 02:49:57 +00:00
|
|
|
import android.widget.ImageView;
|
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
|
|
|
|
2010-12-06 12:26:38 +00:00
|
|
|
public class CandidateView extends LinearLayout implements OnClickListener, OnLongClickListener {
|
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-01-18 08:22:01 +00:00
|
|
|
private static final CharacterStyle BOLD_SPAN = new StyleSpan(Typeface.BOLD);
|
|
|
|
private static final CharacterStyle UNDERLINE_SPAN = new UnderlineSpan();
|
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;
|
|
|
|
private static final int UNSPECIFIED_MEASURESPEC = MeasureSpec.makeMeasureSpec(
|
|
|
|
0, MeasureSpec.UNSPECIFIED);
|
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-14 07:28:57 +00:00
|
|
|
private static final int NUM_CANDIDATES_IN_STRIP = 3;
|
2011-06-15 02:49:57 +00:00
|
|
|
private final ImageView mExpandCandidatesPane;
|
|
|
|
private final ImageView mCloseCandidatesPane;
|
2011-06-14 07:28:57 +00:00
|
|
|
private ViewGroup mCandidatesPane;
|
|
|
|
private ViewGroup mCandidatesPaneContainer;
|
|
|
|
private View mKeyboardView;
|
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-14 07:28:57 +00:00
|
|
|
private final int mCandidateStripHeight;
|
2011-01-18 08:22:01 +00:00
|
|
|
private final CharacterStyle mInvertedForegroundColorSpan;
|
|
|
|
private final CharacterStyle mInvertedBackgroundColorSpan;
|
2011-06-15 02:49:57 +00:00
|
|
|
private final int mAutoCorrectHighlight;
|
|
|
|
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-06-07 08:18:53 +00:00
|
|
|
private final int mColorTypedWord;
|
|
|
|
private final int mColorAutoCorrect;
|
|
|
|
private final int mColorSuggestedCandidate;
|
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-12-06 12:26:38 +00:00
|
|
|
private boolean mShowingAddToDictionary;
|
2010-02-03 23:35:49 +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
|
|
|
|
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
|
|
|
|
2010-02-11 01:45:35 +00:00
|
|
|
Resources res = context.getResources();
|
2010-12-06 12:26:38 +00:00
|
|
|
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-14 07:28:57 +00:00
|
|
|
mCandidateStripHeight = res.getDimensionPixelOffset(R.dimen.candidate_strip_height);
|
2010-12-06 12:26:38 +00:00
|
|
|
for (int i = 0; i < MAX_SUGGESTIONS; i++) {
|
2011-06-24 05:19:59 +00:00
|
|
|
final TextView word, info;
|
2011-06-14 07:28:57 +00:00
|
|
|
switch (i) {
|
|
|
|
case 0:
|
2011-06-24 05:19:59 +00:00
|
|
|
word = (TextView)findViewById(R.id.word_left);
|
2011-06-25 17:07:07 +00:00
|
|
|
word.setPadding(res.getDimensionPixelOffset(R.dimen.candidate_padding), 0, 0, 0);
|
2011-06-24 05:19:59 +00:00
|
|
|
info = (TextView)findViewById(R.id.info_left);
|
2011-06-14 07:28:57 +00:00
|
|
|
break;
|
|
|
|
case 1:
|
2011-06-24 05:19:59 +00:00
|
|
|
word = (TextView)findViewById(R.id.word_center);
|
|
|
|
info = (TextView)findViewById(R.id.info_center);
|
2011-06-14 07:28:57 +00:00
|
|
|
break;
|
|
|
|
case 2:
|
2011-06-24 05:19:59 +00:00
|
|
|
word = (TextView)findViewById(R.id.word_right);
|
|
|
|
info = (TextView)findViewById(R.id.info_right);
|
2011-06-14 07:28:57 +00:00
|
|
|
break;
|
|
|
|
default:
|
2011-06-24 05:19:59 +00:00
|
|
|
word = (TextView)inflater.inflate(R.layout.candidate_word, null);
|
|
|
|
info = (TextView)inflater.inflate(R.layout.candidate_info, null);
|
2011-06-14 07:28:57 +00:00
|
|
|
break;
|
|
|
|
}
|
2011-06-24 05:19:59 +00:00
|
|
|
word.setTag(i);
|
|
|
|
word.setOnClickListener(this);
|
2010-12-06 12:26:38 +00:00
|
|
|
if (i == 0)
|
2011-06-24 05:19:59 +00:00
|
|
|
word.setOnLongClickListener(this);
|
|
|
|
mWords.add(word);
|
|
|
|
mInfos.add(info);
|
2011-06-06 08:23:18 +00:00
|
|
|
if (i > 0) {
|
2011-06-13 05:46:37 +00:00
|
|
|
final View divider = inflater.inflate(R.layout.candidate_divider, null);
|
2011-06-14 07:28:57 +00:00
|
|
|
divider.measure(UNSPECIFIED_MEASURESPEC, UNSPECIFIED_MEASURESPEC);
|
2011-06-06 08:23:18 +00:00
|
|
|
mDividers.add(divider);
|
|
|
|
}
|
2010-09-30 03:10:03 +00:00
|
|
|
}
|
2010-09-29 05:30:01 +00:00
|
|
|
|
2011-06-15 02:49:57 +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);
|
|
|
|
mInvertedForegroundColorSpan = new ForegroundColorSpan(mColorTypedWord ^ 0x00ffffff);
|
|
|
|
mInvertedBackgroundColorSpan = new BackgroundColorSpan(mColorTypedWord);
|
|
|
|
|
|
|
|
mExpandCandidatesPane = (ImageView)findViewById(R.id.expand_candidates_pane);
|
|
|
|
mExpandCandidatesPane.setImageDrawable(
|
|
|
|
a.getDrawable(R.styleable.CandidateView_iconExpandPane));
|
2011-06-14 07:28:57 +00:00
|
|
|
mExpandCandidatesPane.setOnClickListener(new OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View view) {
|
|
|
|
expandCandidatesPane();
|
|
|
|
}
|
|
|
|
});
|
2011-06-15 02:49:57 +00:00
|
|
|
mCloseCandidatesPane = (ImageView)findViewById(R.id.close_candidates_pane);
|
|
|
|
mCloseCandidatesPane.setImageDrawable(
|
|
|
|
a.getDrawable(R.styleable.CandidateView_iconClosePane));
|
2011-06-14 07:28:57 +00:00
|
|
|
mCloseCandidatesPane.setOnClickListener(new OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View view) {
|
|
|
|
closeCandidatesPane();
|
|
|
|
}
|
|
|
|
});
|
2011-06-15 02:49:57 +00:00
|
|
|
|
|
|
|
a.recycle();
|
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;
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-06-07 08:18:53 +00:00
|
|
|
private CharSequence getStyledCandidateWord(CharSequence word, boolean isAutoCorrect) {
|
|
|
|
if (!isAutoCorrect)
|
|
|
|
return word;
|
|
|
|
final Spannable spannedWord = new SpannableString(word);
|
2011-06-15 02:49:57 +00:00
|
|
|
if ((mAutoCorrectHighlight & AUTO_CORRECT_BOLD) != 0)
|
|
|
|
spannedWord.setSpan(BOLD_SPAN, 0, word.length(), Spanned.SPAN_INCLUSIVE_EXCLUSIVE);
|
|
|
|
if ((mAutoCorrectHighlight & AUTO_CORRECT_UNDERLINE) != 0)
|
|
|
|
spannedWord.setSpan(UNDERLINE_SPAN, 0, word.length(), Spanned.SPAN_INCLUSIVE_EXCLUSIVE);
|
2011-06-07 08:18:53 +00:00
|
|
|
return spannedWord;
|
|
|
|
}
|
|
|
|
|
|
|
|
private int getCandidateTextColor(boolean isAutoCorrect, boolean isSuggestedCandidate,
|
|
|
|
SuggestedWordInfo info) {
|
|
|
|
final int color;
|
2011-06-15 02:49:57 +00:00
|
|
|
if (isAutoCorrect) {
|
2011-06-07 08:18:53 +00:00
|
|
|
color = mColorAutoCorrect;
|
2011-06-15 02:49:57 +00:00
|
|
|
} else if (isSuggestedCandidate) {
|
2011-06-07 08:18:53 +00:00
|
|
|
color = mColorSuggestedCandidate;
|
|
|
|
} else {
|
|
|
|
color = mColorTypedWord;
|
|
|
|
}
|
|
|
|
if (info != null && info.isPreviousSuggestedWord()) {
|
|
|
|
final int newAlpha = (int)(Color.alpha(color) * 0.5f);
|
|
|
|
return Color.argb(newAlpha, Color.red(color), Color.green(color), Color.blue(color));
|
|
|
|
} else {
|
|
|
|
return color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-12-19 08:32:26 +00:00
|
|
|
private void updateSuggestions() {
|
|
|
|
final SuggestedWords suggestions = mSuggestions;
|
2011-06-07 08:18:53 +00:00
|
|
|
final List<SuggestedWordInfo> suggestedWordInfoList = suggestions.mSuggestedWordInfoList;
|
|
|
|
|
2010-12-06 12:26:38 +00:00
|
|
|
clear();
|
2011-06-14 07:28:57 +00:00
|
|
|
final int paneWidth = getWidth();
|
|
|
|
final int dividerWidth = mDividers.get(0).getMeasuredWidth();
|
2011-06-24 05:19:59 +00:00
|
|
|
final int dividerHeight = mDividers.get(0).getMeasuredHeight();
|
2011-06-14 07:28:57 +00:00
|
|
|
int x = 0;
|
|
|
|
int y = 0;
|
|
|
|
int fromIndex = NUM_CANDIDATES_IN_STRIP;
|
2011-05-06 04:52:07 +00:00
|
|
|
final int count = Math.min(mWords.size(), suggestions.size());
|
2011-06-14 07:28:57 +00:00
|
|
|
closeCandidatesPane();
|
|
|
|
mExpandCandidatesPane.setEnabled(count >= NUM_CANDIDATES_IN_STRIP);
|
2009-03-13 22:11:42 +00:00
|
|
|
for (int i = 0; i < count; i++) {
|
2011-06-24 05:19:59 +00:00
|
|
|
final CharSequence suggestion = suggestions.getWord(i);
|
|
|
|
if (suggestion == null) continue;
|
2011-06-07 08:18:53 +00:00
|
|
|
|
2011-06-24 05:19:59 +00:00
|
|
|
final SuggestedWordInfo suggestionInfo = (suggestedWordInfoList != null)
|
2011-06-07 08:18:53 +00:00
|
|
|
? suggestedWordInfoList.get(i) : null;
|
|
|
|
final boolean isAutoCorrect = suggestions.mHasMinimalSuggestion
|
2011-01-18 08:22:01 +00:00
|
|
|
&& ((i == 1 && !suggestions.mTypedWordValid)
|
2011-06-07 08:18:53 +00:00
|
|
|
|| (i == 0 && suggestions.mTypedWordValid));
|
|
|
|
// HACK: even if i == 0, we use mColorOther when this suggestion's length is 1
|
|
|
|
// and there are multiple suggestions, such as the default punctuation list.
|
|
|
|
// TODO: Need to revisit this logic with bigram suggestions
|
|
|
|
final boolean isSuggestedCandidate = (i != 0);
|
2011-06-24 05:19:59 +00:00
|
|
|
final boolean isPunctuationSuggestions = (suggestion.length() == 1 && count > 1);
|
2011-06-07 08:18:53 +00:00
|
|
|
|
2011-06-24 05:19:59 +00:00
|
|
|
final TextView word = mWords.get(i);
|
2011-06-14 07:28:57 +00:00
|
|
|
// TODO: Reorder candidates in strip as appropriate. The center candidate should hold
|
|
|
|
// the word when space is typed (valid typed word or auto corrected word).
|
2011-06-24 05:19:59 +00:00
|
|
|
word.setTextColor(getCandidateTextColor(isAutoCorrect,
|
|
|
|
isSuggestedCandidate || isPunctuationSuggestions, suggestionInfo));
|
|
|
|
word.setText(getStyledCandidateWord(suggestion, isAutoCorrect));
|
2011-06-14 07:28:57 +00:00
|
|
|
// TODO: call TextView.setTextScaleX() to fit the candidate in single line.
|
2011-06-24 05:19:59 +00:00
|
|
|
word.measure(UNSPECIFIED_MEASURESPEC, UNSPECIFIED_MEASURESPEC);
|
|
|
|
final int width = word.getMeasuredWidth();
|
|
|
|
final int height = word.getMeasuredHeight();
|
|
|
|
|
|
|
|
final TextView info;
|
|
|
|
if (DBG && suggestionInfo != null
|
|
|
|
&& !TextUtils.isEmpty(suggestionInfo.getDebugString())) {
|
|
|
|
info = mInfos.get(i);
|
|
|
|
info.setText(suggestionInfo.getDebugString());
|
|
|
|
info.setVisibility(View.VISIBLE);
|
|
|
|
info.measure(UNSPECIFIED_MEASURESPEC, UNSPECIFIED_MEASURESPEC);
|
|
|
|
} else {
|
|
|
|
info = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i < NUM_CANDIDATES_IN_STRIP) {
|
|
|
|
if (info != null) {
|
|
|
|
final int infoWidth = info.getMeasuredWidth();
|
|
|
|
FrameLayoutCompatUtils.placeViewAt(
|
2011-06-25 17:07:07 +00:00
|
|
|
info, width - infoWidth, 0, infoWidth, info.getMeasuredHeight());
|
2011-06-24 05:19:59 +00:00
|
|
|
}
|
|
|
|
} else {
|
2011-06-14 07:28:57 +00:00
|
|
|
// TODO: Handle overflow case.
|
|
|
|
if (dividerWidth + x + width >= paneWidth) {
|
|
|
|
centeringCandidates(fromIndex, i - 1, x, paneWidth);
|
|
|
|
x = 0;
|
|
|
|
y += mCandidateStripHeight;
|
|
|
|
fromIndex = i;
|
|
|
|
}
|
|
|
|
if (x != 0) {
|
|
|
|
final View divider = mDividers.get(i - NUM_CANDIDATES_IN_STRIP);
|
2011-06-24 05:19:59 +00:00
|
|
|
mCandidatesPane.addView(divider);
|
|
|
|
FrameLayoutCompatUtils.placeViewAt(
|
|
|
|
divider, x, y + (mCandidateStripHeight - dividerHeight) / 2,
|
|
|
|
dividerWidth, dividerHeight);
|
2011-06-14 07:28:57 +00:00
|
|
|
x += dividerWidth;
|
|
|
|
}
|
2011-06-24 05:19:59 +00:00
|
|
|
mCandidatesPane.addView(word);
|
|
|
|
FrameLayoutCompatUtils.placeViewAt(
|
|
|
|
word, x, y + (mCandidateStripHeight - height) / 2, width, height);
|
|
|
|
if (info != null) {
|
|
|
|
mCandidatesPane.addView(info);
|
|
|
|
final int infoWidth = info.getMeasuredWidth();
|
|
|
|
FrameLayoutCompatUtils.placeViewAt(
|
|
|
|
info, x + width - infoWidth, y, infoWidth, info.getMeasuredHeight());
|
|
|
|
}
|
2011-06-14 07:28:57 +00:00
|
|
|
x += width;
|
2010-12-10 11:50:30 +00:00
|
|
|
}
|
2009-03-13 22:11:42 +00:00
|
|
|
}
|
2011-06-14 07:28:57 +00:00
|
|
|
if (x != 0) {
|
|
|
|
// Centering last candidates row.
|
|
|
|
centeringCandidates(fromIndex, count - 1, x, paneWidth);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void centeringCandidates(int from, int to, int width, int paneWidth) {
|
|
|
|
final ViewGroup pane = mCandidatesPane;
|
|
|
|
final int fromIndex = pane.indexOfChild(mWords.get(from));
|
2011-06-24 05:19:59 +00:00
|
|
|
final int toIndex;
|
|
|
|
if (mInfos.get(to).getParent() != null) {
|
|
|
|
toIndex = pane.indexOfChild(mInfos.get(to));
|
|
|
|
} else {
|
|
|
|
toIndex = pane.indexOfChild(mWords.get(to));
|
|
|
|
}
|
2011-06-14 07:28:57 +00:00
|
|
|
final int offset = (paneWidth - width) / 2;
|
|
|
|
for (int index = fromIndex; index <= toIndex; index++) {
|
|
|
|
offsetMargin(pane.getChildAt(index), offset, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void expandCandidatesPane() {
|
|
|
|
mExpandCandidatesPane.setVisibility(View.GONE);
|
|
|
|
mCloseCandidatesPane.setVisibility(View.VISIBLE);
|
|
|
|
mCandidatesPaneContainer.setMinimumHeight(mKeyboardView.getMeasuredHeight());
|
|
|
|
mCandidatesPaneContainer.setVisibility(View.VISIBLE);
|
|
|
|
mKeyboardView.setVisibility(View.GONE);
|
|
|
|
}
|
2010-12-06 12:26:38 +00:00
|
|
|
|
2011-06-14 07:28:57 +00:00
|
|
|
private void closeCandidatesPane() {
|
|
|
|
mExpandCandidatesPane.setVisibility(View.VISIBLE);
|
|
|
|
mCloseCandidatesPane.setVisibility(View.GONE);
|
|
|
|
mCandidatesPaneContainer.setVisibility(View.GONE);
|
|
|
|
mKeyboardView.setVisibility(View.VISIBLE);
|
2009-03-13 22:11:42 +00:00
|
|
|
}
|
|
|
|
|
2010-12-09 07:36:45 +00:00
|
|
|
public void onAutoCorrectionInverted(CharSequence autoCorrectedWord) {
|
2011-06-15 02:49:57 +00:00
|
|
|
if ((mAutoCorrectHighlight & AUTO_CORRECT_INVERT) == 0)
|
2010-12-09 07:36:45 +00:00
|
|
|
return;
|
2011-06-07 08:18:53 +00:00
|
|
|
final TextView tv = mWords.get(1);
|
2010-12-09 07:36:45 +00:00
|
|
|
final Spannable word = new SpannableString(autoCorrectedWord);
|
|
|
|
final int wordLength = word.length();
|
2011-01-31 05:49:33 +00:00
|
|
|
word.setSpan(mInvertedBackgroundColorSpan, 0, wordLength,
|
|
|
|
Spanned.SPAN_INCLUSIVE_EXCLUSIVE);
|
|
|
|
word.setSpan(mInvertedForegroundColorSpan, 0, wordLength,
|
|
|
|
Spanned.SPAN_INCLUSIVE_EXCLUSIVE);
|
2010-12-09 07:36:45 +00:00
|
|
|
tv.setText(word);
|
|
|
|
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) {
|
2010-12-10 11:50:30 +00:00
|
|
|
SuggestedWords.Builder builder = new SuggestedWords.Builder()
|
|
|
|
.addWord(word)
|
|
|
|
.addWord(getContext().getText(R.string.hint_add_to_dictionary));
|
|
|
|
setSuggestions(builder.build());
|
2010-02-11 01:45:35 +00:00
|
|
|
mShowingAddToDictionary = true;
|
2010-12-06 12:26:38 +00:00
|
|
|
// Disable R.string.hint_add_to_dictionary button
|
2011-06-07 08:18:53 +00:00
|
|
|
TextView tv = mWords.get(1);
|
2010-12-06 12:26:38 +00:00
|
|
|
tv.setClickable(false);
|
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-24 05:19:59 +00:00
|
|
|
for (int i = 0; i < NUM_CANDIDATES_IN_STRIP; i++) {
|
2011-06-14 07:28:57 +00:00
|
|
|
mWords.get(i).setText(null);
|
2011-06-24 05:19:59 +00:00
|
|
|
mInfos.get(i).setVisibility(View.GONE);
|
|
|
|
}
|
2011-06-14 07:28:57 +00:00
|
|
|
mCandidatesPane.removeAllViews();
|
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-06-07 08:18:53 +00:00
|
|
|
previewText.setTextColor(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 boolean onLongClick(View view) {
|
2011-06-14 07:28:57 +00:00
|
|
|
final Object tag = view.getTag();
|
|
|
|
if (!(tag instanceof Integer))
|
|
|
|
return true;
|
|
|
|
final int index = (Integer) tag;
|
2011-06-10 00:53:27 +00:00
|
|
|
if (index >= mSuggestions.size())
|
|
|
|
return true;
|
2011-06-14 07:28:57 +00:00
|
|
|
|
2011-06-10 00:53:27 +00:00
|
|
|
final CharSequence word = mSuggestions.getWord(index);
|
2010-12-06 12:26:38 +00:00
|
|
|
if (word.length() < 2)
|
|
|
|
return false;
|
|
|
|
addToDictionary(word);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(View view) {
|
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);
|
2010-12-06 12:26:38 +00:00
|
|
|
if (mShowingAddToDictionary && index == 0) {
|
|
|
|
addToDictionary(word);
|
|
|
|
} else {
|
2011-06-09 05:22:37 +00:00
|
|
|
mListener.pickSuggestionManually(index, word);
|
2009-03-13 22:11:42 +00:00
|
|
|
}
|
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
|
|
|
}
|