2011-05-24 11:30:30 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2011 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* 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.compat;
|
|
|
|
|
|
|
|
import android.content.Context;
|
|
|
|
import android.text.Spannable;
|
|
|
|
import android.text.SpannableString;
|
|
|
|
import android.text.Spanned;
|
2011-06-15 05:40:34 +00:00
|
|
|
import android.text.TextUtils;
|
2012-12-17 10:35:09 +00:00
|
|
|
import android.text.style.SuggestionSpan;
|
2011-05-24 11:30:30 +00:00
|
|
|
|
2012-08-21 07:34:55 +00:00
|
|
|
import com.android.inputmethod.latin.CollectionUtils;
|
|
|
|
import com.android.inputmethod.latin.LatinImeLogger;
|
|
|
|
import com.android.inputmethod.latin.SuggestedWords;
|
|
|
|
import com.android.inputmethod.latin.SuggestionSpanPickedNotificationReceiver;
|
|
|
|
|
2011-10-28 10:02:59 +00:00
|
|
|
import java.lang.reflect.Field;
|
2011-06-15 05:40:34 +00:00
|
|
|
import java.util.ArrayList;
|
2011-05-24 11:30:30 +00:00
|
|
|
|
2012-08-29 08:26:00 +00:00
|
|
|
public final class SuggestionSpanUtils {
|
2011-09-28 06:59:11 +00:00
|
|
|
private static final String TAG = SuggestionSpanUtils.class.getSimpleName();
|
2011-05-26 05:10:00 +00:00
|
|
|
|
2012-12-17 10:35:09 +00:00
|
|
|
// Note that SuggestionSpan.FLAG_AUTO_CORRECTION was added in API level 15.
|
2012-03-26 08:43:38 +00:00
|
|
|
public static final Field FIELD_FLAG_AUTO_CORRECTION =
|
2012-12-17 10:35:09 +00:00
|
|
|
CompatUtils.getField(SuggestionSpan.class, "FLAG_AUTO_CORRECTION");
|
|
|
|
public static final Integer OBJ_FLAG_AUTO_CORRECTION =
|
|
|
|
(Integer) CompatUtils.getFieldValue(null, null, FIELD_FLAG_AUTO_CORRECTION);
|
2011-10-28 10:02:59 +00:00
|
|
|
|
2011-05-25 09:30:31 +00:00
|
|
|
static {
|
2011-10-28 10:02:59 +00:00
|
|
|
if (LatinImeLogger.sDBG) {
|
2012-12-17 10:35:09 +00:00
|
|
|
if (OBJ_FLAG_AUTO_CORRECTION == null) {
|
2011-12-05 03:41:11 +00:00
|
|
|
throw new RuntimeException("Field is accidentially null.");
|
2011-10-28 10:02:59 +00:00
|
|
|
}
|
|
|
|
}
|
2011-05-25 09:30:31 +00:00
|
|
|
}
|
2011-05-24 11:30:30 +00:00
|
|
|
|
2012-04-03 09:01:04 +00:00
|
|
|
private SuggestionSpanUtils() {
|
|
|
|
// This utility class is not publicly instantiable.
|
|
|
|
}
|
|
|
|
|
2011-09-28 06:59:11 +00:00
|
|
|
public static CharSequence getTextWithAutoCorrectionIndicatorUnderline(
|
2012-10-03 06:19:43 +00:00
|
|
|
final Context context, final String text) {
|
2012-12-17 10:35:09 +00:00
|
|
|
if (TextUtils.isEmpty(text) || OBJ_FLAG_AUTO_CORRECTION == null) {
|
2011-09-28 06:59:11 +00:00
|
|
|
return text;
|
|
|
|
}
|
2012-10-03 06:19:43 +00:00
|
|
|
final Spannable spannable = new SpannableString(text);
|
2012-12-17 10:35:09 +00:00
|
|
|
final SuggestionSpan suggestionSpan = new SuggestionSpan(context, null, new String[] {},
|
|
|
|
(int)OBJ_FLAG_AUTO_CORRECTION, SuggestionSpanPickedNotificationReceiver.class);
|
|
|
|
spannable.setSpan(suggestionSpan, 0, text.length(),
|
2011-10-14 16:31:50 +00:00
|
|
|
Spanned.SPAN_EXCLUSIVE_EXCLUSIVE | Spanned.SPAN_COMPOSING);
|
2011-09-28 06:59:11 +00:00
|
|
|
return spannable;
|
|
|
|
}
|
|
|
|
|
2012-10-03 06:19:43 +00:00
|
|
|
public static CharSequence getTextWithSuggestionSpan(final Context context,
|
|
|
|
final String pickedWord, final SuggestedWords suggestedWords,
|
|
|
|
final boolean dictionaryAvailable) {
|
2012-12-17 10:35:09 +00:00
|
|
|
if (!dictionaryAvailable || TextUtils.isEmpty(pickedWord) || suggestedWords.isEmpty()
|
|
|
|
|| suggestedWords.mIsPrediction || suggestedWords.mIsPunctuationSuggestions) {
|
2011-06-17 09:25:36 +00:00
|
|
|
return pickedWord;
|
2011-05-24 11:30:30 +00:00
|
|
|
}
|
|
|
|
|
2012-10-03 06:19:43 +00:00
|
|
|
final Spannable spannable = new SpannableString(pickedWord);
|
2012-08-21 07:34:55 +00:00
|
|
|
final ArrayList<String> suggestionsList = CollectionUtils.newArrayList();
|
2011-06-15 05:40:34 +00:00
|
|
|
for (int i = 0; i < suggestedWords.size(); ++i) {
|
2012-12-17 10:35:09 +00:00
|
|
|
if (suggestionsList.size() >= SuggestionSpan.SUGGESTIONS_MAX_SIZE) {
|
2011-06-15 05:40:34 +00:00
|
|
|
break;
|
|
|
|
}
|
2012-10-03 06:19:43 +00:00
|
|
|
final String word = suggestedWords.getWord(i);
|
2011-06-17 09:25:36 +00:00
|
|
|
if (!TextUtils.equals(pickedWord, word)) {
|
2011-06-15 05:40:34 +00:00
|
|
|
suggestionsList.add(word.toString());
|
|
|
|
}
|
2011-05-24 11:30:30 +00:00
|
|
|
}
|
2011-06-15 05:40:34 +00:00
|
|
|
|
2012-04-05 11:45:59 +00:00
|
|
|
// TODO: We should avoid adding suggestion span candidates that came from the bigram
|
|
|
|
// prediction.
|
2012-12-17 10:35:09 +00:00
|
|
|
final SuggestionSpan suggestionSpan = new SuggestionSpan(context, null,
|
|
|
|
suggestionsList.toArray(new String[suggestionsList.size()]), 0,
|
|
|
|
SuggestionSpanPickedNotificationReceiver.class);
|
|
|
|
spannable.setSpan(suggestionSpan, 0, pickedWord.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
|
2011-05-24 11:30:30 +00:00
|
|
|
return spannable;
|
|
|
|
}
|
|
|
|
}
|