aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/CandidateView.java
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2010-12-09 14:04:50 +0900
committerTadashi G. Takaoka <takaoka@google.com>2010-12-09 14:04:50 +0900
commit522d5c16d20657e7d26009fe9c067404e16a6c2a (patch)
tree9e29e6d2fa1474fea129df1fb7136d63f603468d /java/src/com/android/inputmethod/latin/CandidateView.java
parent89c58745d639a4434dfbe600c28dad1bc8bc6888 (diff)
downloadlatinime-522d5c16d20657e7d26009fe9c067404e16a6c2a.tar.gz
latinime-522d5c16d20657e7d26009fe9c067404e16a6c2a.tar.xz
latinime-522d5c16d20657e7d26009fe9c067404e16a6c2a.zip
Show underline for auto-completion candidate instead of bolding
Bug: 3230726 Change-Id: Iadc11992d45776f7a4002ee9ebf24828646bcc53
Diffstat (limited to 'java/src/com/android/inputmethod/latin/CandidateView.java')
-rw-r--r--java/src/com/android/inputmethod/latin/CandidateView.java18
1 files changed, 14 insertions, 4 deletions
diff --git a/java/src/com/android/inputmethod/latin/CandidateView.java b/java/src/com/android/inputmethod/latin/CandidateView.java
index 3196fa65d..bb3c09d60 100644
--- a/java/src/com/android/inputmethod/latin/CandidateView.java
+++ b/java/src/com/android/inputmethod/latin/CandidateView.java
@@ -21,7 +21,12 @@ import android.content.res.Resources;
import android.graphics.Typeface;
import android.os.Handler;
import android.os.Message;
+import android.text.Spannable;
+import android.text.SpannableString;
import android.text.TextUtils;
+import android.text.style.CharacterStyle;
+import android.text.style.StyleSpan;
+import android.text.style.UnderlineSpan;
import android.util.AttributeSet;
import android.view.Gravity;
import android.view.LayoutInflater;
@@ -50,6 +55,8 @@ public class CandidateView extends LinearLayout implements OnClickListener, OnLo
private final int mColorNormal;
private final int mColorRecommended;
private final int mColorOther;
+ private static final StyleSpan BOLD_SPAN = new StyleSpan(Typeface.BOLD);
+ private static final CharacterStyle UNDERLINE_SPAN = new UnderlineSpan();
private boolean mShowingCompletions;
@@ -136,14 +143,17 @@ public class CandidateView extends LinearLayout implements OnClickListener, OnLo
View v = mWords.get(i);
TextView tv = (TextView)v.findViewById(R.id.candidate_word);
- tv.setTypeface(Typeface.DEFAULT);
tv.setTextColor(mColorNormal);
if (haveMinimalSuggestion
&& ((i == 1 && !typedWordValid) || (i == 0 && typedWordValid))) {
- // TODO: Display underline for the auto-correction word
- tv.setTypeface(Typeface.DEFAULT_BOLD);
- if (mConfigCandidateHighlightFontColorEnabled)
+ final Spannable word = new SpannableString(suggestion);
+ if (mConfigCandidateHighlightFontColorEnabled) {
+ word.setSpan(BOLD_SPAN, 0, wordLength, Spannable.SPAN_INCLUSIVE_EXCLUSIVE);
tv.setTextColor(mColorRecommended);
+ } else {
+ word.setSpan(UNDERLINE_SPAN, 0, wordLength, Spannable.SPAN_INCLUSIVE_EXCLUSIVE);
+ }
+ suggestion = word;
existsAutoCompletion = true;
} else if (i != 0 || (wordLength == 1 && count > 1)) {
// HACK: even if i == 0, we use mColorOther when this