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;
|
2009-03-13 22:11:42 +00:00
|
|
|
import android.graphics.Typeface;
|
2010-12-06 12:26:38 +00:00
|
|
|
import android.os.Handler;
|
|
|
|
import android.os.Message;
|
|
|
|
import android.text.TextUtils;
|
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;
|
|
|
|
import android.widget.ImageView;
|
|
|
|
import android.widget.LinearLayout;
|
2009-03-13 22:11:42 +00:00
|
|
|
import android.widget.PopupWindow;
|
|
|
|
import android.widget.TextView;
|
|
|
|
|
2010-09-29 05:30:01 +00:00
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.List;
|
|
|
|
|
2010-12-06 12:26:38 +00:00
|
|
|
public class CandidateView extends LinearLayout implements OnClickListener, OnLongClickListener {
|
2009-03-13 22:11:42 +00:00
|
|
|
private LatinIME mService;
|
2010-09-29 05:30:01 +00:00
|
|
|
private final ArrayList<CharSequence> mSuggestions = new ArrayList<CharSequence>();
|
2010-12-06 12:26:38 +00:00
|
|
|
private final ArrayList<View> mWords = new ArrayList<View>();
|
2009-03-13 22:11:42 +00:00
|
|
|
|
2010-09-29 05:30:01 +00:00
|
|
|
private final TextView mPreviewText;
|
|
|
|
private final PopupWindow mPreviewPopup;
|
2009-03-13 22:11:42 +00:00
|
|
|
|
2010-12-06 12:26:38 +00:00
|
|
|
private static final int MAX_SUGGESTIONS = 16;
|
2009-03-13 22:11:42 +00:00
|
|
|
|
2010-12-06 12:26:38 +00:00
|
|
|
private final boolean mConfigCandidateHighlightFontColorEnabled;
|
2010-09-29 05:30:01 +00:00
|
|
|
private final int mColorNormal;
|
|
|
|
private final int mColorRecommended;
|
|
|
|
private final int mColorOther;
|
2010-02-11 01:45:35 +00:00
|
|
|
|
2010-12-06 12:26:38 +00:00
|
|
|
private boolean mShowingCompletions;
|
2010-02-03 23:35:49 +00:00
|
|
|
|
2010-12-06 12:26:38 +00:00
|
|
|
private boolean mShowingAddToDictionary;
|
2010-02-03 23:35:49 +00:00
|
|
|
|
2010-12-06 12:26:38 +00:00
|
|
|
private static final long DELAY_HIDE_PREVIEW = 1000;
|
|
|
|
private static final int MSG_HIDE_PREVIEW = 0;
|
|
|
|
private final Handler mHandler = new Handler() {
|
|
|
|
@Override
|
|
|
|
public void dispatchMessage(Message msg) {
|
|
|
|
switch (msg.what) {
|
|
|
|
case MSG_HIDE_PREVIEW:
|
|
|
|
hidePreview();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
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) {
|
|
|
|
super(context, attrs);
|
|
|
|
|
2010-02-11 01:45:35 +00:00
|
|
|
Resources res = context.getResources();
|
2009-03-13 22:11:42 +00:00
|
|
|
mPreviewPopup = new PopupWindow(context);
|
2010-12-06 12:26:38 +00:00
|
|
|
LayoutInflater inflater = LayoutInflater.from(context);
|
|
|
|
mPreviewText = (TextView) inflater.inflate(R.layout.candidate_preview, null);
|
2009-03-13 22:11:42 +00:00
|
|
|
mPreviewPopup.setWindowLayoutMode(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
|
|
|
|
mPreviewPopup.setContentView(mPreviewText);
|
|
|
|
mPreviewPopup.setBackgroundDrawable(null);
|
2010-09-29 05:30:01 +00:00
|
|
|
mPreviewPopup.setAnimationStyle(R.style.KeyPreviewAnimation);
|
2010-12-06 12:26:38 +00:00
|
|
|
mConfigCandidateHighlightFontColorEnabled =
|
|
|
|
res.getBoolean(R.bool.config_candidate_highlight_font_color_enabled);
|
2010-02-11 01:45:35 +00:00
|
|
|
mColorNormal = res.getColor(R.color.candidate_normal);
|
|
|
|
mColorRecommended = res.getColor(R.color.candidate_recommended);
|
|
|
|
mColorOther = res.getColor(R.color.candidate_other);
|
2009-03-13 22:11:42 +00:00
|
|
|
|
2010-12-06 12:26:38 +00:00
|
|
|
for (int i = 0; i < MAX_SUGGESTIONS; i++) {
|
|
|
|
View v = inflater.inflate(R.layout.candidate, null);
|
|
|
|
TextView tv = (TextView)v.findViewById(R.id.candidate_word);
|
|
|
|
tv.setTag(i);
|
|
|
|
tv.setOnClickListener(this);
|
|
|
|
if (i == 0)
|
|
|
|
tv.setOnLongClickListener(this);
|
|
|
|
ImageView divider = (ImageView)v.findViewById(R.id.candidate_divider);
|
|
|
|
// Do not display divider of first candidate.
|
|
|
|
divider.setVisibility(i == 0 ? View.GONE : View.VISIBLE);
|
|
|
|
mWords.add(v);
|
2010-09-30 03:10:03 +00:00
|
|
|
}
|
2010-09-29 05:30:01 +00:00
|
|
|
|
2010-12-06 12:26:38 +00:00
|
|
|
scrollTo(0, getScrollY());
|
2009-03-13 22:11:42 +00:00
|
|
|
}
|
2010-09-30 03:10:03 +00:00
|
|
|
|
2009-03-13 22:11:42 +00:00
|
|
|
/**
|
|
|
|
* A connection back to the service to communicate with the text field
|
|
|
|
* @param listener
|
|
|
|
*/
|
|
|
|
public void setService(LatinIME listener) {
|
|
|
|
mService = listener;
|
|
|
|
}
|
|
|
|
|
2010-12-06 12:26:38 +00:00
|
|
|
public void setSuggestions(List<CharSequence> suggestions, boolean completions,
|
|
|
|
boolean typedWordValid, boolean haveMinimalSuggestion) {
|
|
|
|
clear();
|
|
|
|
if (suggestions != null) {
|
|
|
|
int insertCount = Math.min(suggestions.size(), MAX_SUGGESTIONS);
|
|
|
|
for (CharSequence suggestion : suggestions) {
|
|
|
|
mSuggestions.add(suggestion);
|
|
|
|
if (--insertCount == 0)
|
|
|
|
break;
|
2009-03-13 22:11:42 +00:00
|
|
|
}
|
|
|
|
}
|
2010-09-29 05:30:01 +00:00
|
|
|
|
|
|
|
final int count = mSuggestions.size();
|
2010-09-02 13:54:37 +00:00
|
|
|
boolean existsAutoCompletion = false;
|
|
|
|
|
2009-03-13 22:11:42 +00:00
|
|
|
for (int i = 0; i < count; i++) {
|
|
|
|
CharSequence suggestion = mSuggestions.get(i);
|
|
|
|
if (suggestion == null) continue;
|
2010-09-29 05:30:01 +00:00
|
|
|
final int wordLength = suggestion.length();
|
|
|
|
|
2010-12-06 12:26:38 +00:00
|
|
|
View v = mWords.get(i);
|
|
|
|
TextView tv = (TextView)v.findViewById(R.id.candidate_word);
|
|
|
|
tv.setTypeface(Typeface.DEFAULT);
|
|
|
|
tv.setTextColor(mColorNormal);
|
2010-12-08 11:05:34 +00:00
|
|
|
if (haveMinimalSuggestion
|
|
|
|
&& ((i == 1 && !typedWordValid) || (i == 0 && typedWordValid))) {
|
|
|
|
// TODO: Display underline for the auto-correction word
|
|
|
|
tv.setTypeface(Typeface.DEFAULT_BOLD);
|
|
|
|
if (mConfigCandidateHighlightFontColorEnabled)
|
2010-12-06 12:26:38 +00:00
|
|
|
tv.setTextColor(mColorRecommended);
|
2010-12-08 11:05:34 +00:00
|
|
|
existsAutoCompletion = true;
|
|
|
|
} else if (i != 0 || (wordLength == 1 && count > 1)) {
|
|
|
|
// 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.
|
|
|
|
if (mConfigCandidateHighlightFontColorEnabled)
|
2010-12-06 12:26:38 +00:00
|
|
|
tv.setTextColor(mColorOther);
|
2010-09-29 05:30:01 +00:00
|
|
|
}
|
2010-12-06 12:26:38 +00:00
|
|
|
tv.setText(suggestion);
|
|
|
|
tv.setClickable(true);
|
|
|
|
addView(v);
|
2009-03-13 22:11:42 +00:00
|
|
|
}
|
2010-12-06 12:26:38 +00:00
|
|
|
|
2009-03-13 22:11:42 +00:00
|
|
|
mShowingCompletions = completions;
|
2010-12-06 12:26:38 +00:00
|
|
|
// TODO: Move this call back to LatinIME
|
|
|
|
if (mConfigCandidateHighlightFontColorEnabled)
|
|
|
|
mService.onAutoCompletionStateChanged(existsAutoCompletion);
|
|
|
|
|
2010-01-28 01:29:35 +00:00
|
|
|
scrollTo(0, getScrollY());
|
2009-03-13 22:11:42 +00:00
|
|
|
requestLayout();
|
|
|
|
}
|
|
|
|
|
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) {
|
|
|
|
ArrayList<CharSequence> suggestions = new ArrayList<CharSequence>();
|
|
|
|
suggestions.add(word);
|
2010-12-06 12:26:38 +00:00
|
|
|
suggestions.add(getContext().getText(R.string.hint_add_to_dictionary));
|
2010-02-11 01:45:35 +00:00
|
|
|
setSuggestions(suggestions, false, false, false);
|
|
|
|
mShowingAddToDictionary = true;
|
2010-12-06 12:26:38 +00:00
|
|
|
// Disable R.string.hint_add_to_dictionary button
|
|
|
|
TextView tv = (TextView)getChildAt(1).findViewById(R.id.candidate_word);
|
|
|
|
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-08-20 05:35:02 +00:00
|
|
|
/* package */ List<CharSequence> getSuggestions() {
|
|
|
|
return mSuggestions;
|
|
|
|
}
|
|
|
|
|
2009-03-13 22:11:42 +00:00
|
|
|
public void clear() {
|
2010-08-20 05:35:02 +00:00
|
|
|
// Don't call mSuggestions.clear() because it's being used for logging
|
|
|
|
// in LatinIME.pickSuggestionManually().
|
2010-09-29 05:30:01 +00:00
|
|
|
mSuggestions.clear();
|
2010-02-11 01:45:35 +00:00
|
|
|
mShowingAddToDictionary = false;
|
2010-12-06 12:26:38 +00:00
|
|
|
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;
|
|
|
|
previewText.setText(word);
|
|
|
|
previewText.measure(MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED),
|
|
|
|
MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED));
|
|
|
|
View v = getChildAt(index);
|
|
|
|
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);
|
|
|
|
mHandler.sendMessageDelayed(
|
|
|
|
mHandler.obtainMessage(MSG_HIDE_PREVIEW), DELAY_HIDE_PREVIEW);
|
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) {
|
2009-03-13 22:11:42 +00:00
|
|
|
if (mService.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) {
|
|
|
|
int index = (Integer) view.getTag();
|
|
|
|
CharSequence word = mSuggestions.get(index);
|
|
|
|
if (word.length() < 2)
|
|
|
|
return false;
|
|
|
|
addToDictionary(word);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(View view) {
|
|
|
|
int index = (Integer) view.getTag();
|
|
|
|
CharSequence word = mSuggestions.get(index);
|
|
|
|
if (mShowingAddToDictionary && index == 0) {
|
|
|
|
addToDictionary(word);
|
|
|
|
} else {
|
|
|
|
if (!mShowingCompletions) {
|
|
|
|
TextEntryState.acceptedSuggestion(mSuggestions.get(0), word);
|
|
|
|
}
|
|
|
|
mService.pickSuggestionManually(index, word);
|
2009-03-13 22:11:42 +00:00
|
|
|
}
|
|
|
|
}
|
2009-03-31 21:50:26 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onDetachedFromWindow() {
|
|
|
|
super.onDetachedFromWindow();
|
2010-12-06 12:26:38 +00:00
|
|
|
mHandler.removeMessages(MSG_HIDE_PREVIEW);
|
2009-03-31 21:50:26 +00:00
|
|
|
hidePreview();
|
|
|
|
}
|
2009-03-13 22:11:42 +00:00
|
|
|
}
|