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;
|
2011-09-28 06:59:11 +00:00
|
|
|
import android.util.Log;
|
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-05-24 11:30:30 +00:00
|
|
|
import java.lang.reflect.Constructor;
|
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-26 05:10:00 +00:00
|
|
|
import java.util.Locale;
|
2011-05-24 11:30:30 +00:00
|
|
|
|
|
|
|
public class SuggestionSpanUtils {
|
2011-09-28 06:59:11 +00:00
|
|
|
private static final String TAG = SuggestionSpanUtils.class.getSimpleName();
|
2011-06-17 09:25:36 +00:00
|
|
|
// TODO: Use reflection to get field values
|
2011-05-26 05:10:00 +00:00
|
|
|
public static final String ACTION_SUGGESTION_PICKED =
|
|
|
|
"android.text.style.SUGGESTION_PICKED";
|
|
|
|
public static final String SUGGESTION_SPAN_PICKED_AFTER = "after";
|
|
|
|
public static final String SUGGESTION_SPAN_PICKED_BEFORE = "before";
|
|
|
|
public static final String SUGGESTION_SPAN_PICKED_HASHCODE = "hashcode";
|
2011-06-17 09:25:36 +00:00
|
|
|
public static final boolean SUGGESTION_SPAN_IS_SUPPORTED;
|
2011-05-26 05:10:00 +00:00
|
|
|
|
|
|
|
private static final Class<?> CLASS_SuggestionSpan = CompatUtils
|
|
|
|
.getClass("android.text.style.SuggestionSpan");
|
2011-05-24 11:30:30 +00:00
|
|
|
private static final Class<?>[] INPUT_TYPE_SuggestionSpan = new Class<?>[] {
|
2011-05-26 05:10:00 +00:00
|
|
|
Context.class, Locale.class, String[].class, int.class, Class.class };
|
|
|
|
private static final Constructor<?> CONSTRUCTOR_SuggestionSpan = CompatUtils
|
|
|
|
.getConstructor(CLASS_SuggestionSpan, INPUT_TYPE_SuggestionSpan);
|
2012-03-26 08:43:38 +00:00
|
|
|
public static final Field FIELD_FLAG_EASY_CORRECT =
|
|
|
|
CompatUtils.getField(CLASS_SuggestionSpan, "FLAG_EASY_CORRECT");
|
|
|
|
public static final Field FIELD_FLAG_MISSPELLED =
|
|
|
|
CompatUtils.getField(CLASS_SuggestionSpan, "FLAG_MISSPELLED");
|
|
|
|
public static final Field FIELD_FLAG_AUTO_CORRECTION =
|
|
|
|
CompatUtils.getField(CLASS_SuggestionSpan, "FLAG_AUTO_CORRECTION");
|
2011-12-06 07:35:02 +00:00
|
|
|
public static final Field FIELD_SUGGESTIONS_MAX_SIZE
|
2011-12-05 03:41:11 +00:00
|
|
|
= CompatUtils.getField(CLASS_SuggestionSpan, "SUGGESTIONS_MAX_SIZE");
|
2012-03-26 08:43:38 +00:00
|
|
|
public static final Integer OBJ_FLAG_EASY_CORRECT = (Integer) CompatUtils
|
|
|
|
.getFieldValue(null, null, FIELD_FLAG_EASY_CORRECT);
|
|
|
|
public static final Integer OBJ_FLAG_MISSPELLED = (Integer) CompatUtils
|
|
|
|
.getFieldValue(null, null, FIELD_FLAG_MISSPELLED);
|
2011-10-28 10:02:59 +00:00
|
|
|
public static final Integer OBJ_FLAG_AUTO_CORRECTION = (Integer) CompatUtils
|
2012-03-26 08:43:38 +00:00
|
|
|
.getFieldValue(null, null, FIELD_FLAG_AUTO_CORRECTION);
|
2011-12-06 07:35:02 +00:00
|
|
|
public static final Integer OBJ_SUGGESTIONS_MAX_SIZE = (Integer) CompatUtils
|
2012-03-26 08:43:38 +00:00
|
|
|
.getFieldValue(null, null, FIELD_SUGGESTIONS_MAX_SIZE);
|
2011-10-28 10:02:59 +00:00
|
|
|
|
2011-05-25 09:30:31 +00:00
|
|
|
static {
|
2011-05-26 05:10:00 +00:00
|
|
|
SUGGESTION_SPAN_IS_SUPPORTED =
|
|
|
|
CLASS_SuggestionSpan != null && CONSTRUCTOR_SuggestionSpan != null;
|
2011-10-28 10:02:59 +00:00
|
|
|
if (LatinImeLogger.sDBG) {
|
|
|
|
if (SUGGESTION_SPAN_IS_SUPPORTED
|
2012-03-26 08:43:38 +00:00
|
|
|
&& (OBJ_FLAG_AUTO_CORRECTION == null || OBJ_SUGGESTIONS_MAX_SIZE == null
|
|
|
|
|| OBJ_FLAG_MISSPELLED == null || OBJ_FLAG_EASY_CORRECT == 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(
|
|
|
|
Context context, CharSequence text) {
|
2011-10-28 10:02:59 +00:00
|
|
|
if (TextUtils.isEmpty(text) || CONSTRUCTOR_SuggestionSpan == null
|
2012-03-26 08:43:38 +00:00
|
|
|
|| OBJ_FLAG_AUTO_CORRECTION == null || OBJ_SUGGESTIONS_MAX_SIZE == null
|
|
|
|
|| OBJ_FLAG_MISSPELLED == null || OBJ_FLAG_EASY_CORRECT == null) {
|
2011-09-28 06:59:11 +00:00
|
|
|
return text;
|
|
|
|
}
|
|
|
|
final Spannable spannable = text instanceof Spannable
|
|
|
|
? (Spannable) text : new SpannableString(text);
|
|
|
|
final Object[] args =
|
2011-10-28 10:02:59 +00:00
|
|
|
{ context, null, new String[] {}, (int)OBJ_FLAG_AUTO_CORRECTION,
|
2011-09-28 06:59:11 +00:00
|
|
|
(Class<?>) SuggestionSpanPickedNotificationReceiver.class };
|
|
|
|
final Object ss = CompatUtils.newInstance(CONSTRUCTOR_SuggestionSpan, args);
|
|
|
|
if (ss == null) {
|
|
|
|
Log.w(TAG, "Suggestion span was not created.");
|
|
|
|
return text;
|
|
|
|
}
|
2011-10-14 16:31:50 +00:00
|
|
|
spannable.setSpan(ss, 0, text.length(),
|
|
|
|
Spanned.SPAN_EXCLUSIVE_EXCLUSIVE | Spanned.SPAN_COMPOSING);
|
2011-09-28 06:59:11 +00:00
|
|
|
return spannable;
|
|
|
|
}
|
|
|
|
|
2011-05-26 05:10:00 +00:00
|
|
|
public static CharSequence getTextWithSuggestionSpan(Context context,
|
2012-04-12 10:46:02 +00:00
|
|
|
CharSequence pickedWord, SuggestedWords suggestedWords, boolean dictionaryAvailable) {
|
|
|
|
if (!dictionaryAvailable || TextUtils.isEmpty(pickedWord)
|
|
|
|
|| CONSTRUCTOR_SuggestionSpan == null
|
2011-08-26 10:04:54 +00:00
|
|
|
|| suggestedWords == null || suggestedWords.size() == 0
|
2012-05-14 05:42:40 +00:00
|
|
|
|| suggestedWords.mIsPrediction || suggestedWords.mIsPunctuationSuggestions
|
2011-12-06 07:35:02 +00:00
|
|
|
|| OBJ_SUGGESTIONS_MAX_SIZE == null) {
|
2011-06-17 09:25:36 +00:00
|
|
|
return pickedWord;
|
2011-05-24 11:30:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
final Spannable spannable;
|
2011-06-17 09:25:36 +00:00
|
|
|
if (pickedWord instanceof Spannable) {
|
|
|
|
spannable = (Spannable) pickedWord;
|
2011-05-24 11:30:30 +00:00
|
|
|
} else {
|
2011-06-17 09:25:36 +00:00
|
|
|
spannable = new SpannableString(pickedWord);
|
2011-05-24 11:30:30 +00:00
|
|
|
}
|
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) {
|
2011-12-06 07:35:02 +00:00
|
|
|
if (suggestionsList.size() >= OBJ_SUGGESTIONS_MAX_SIZE) {
|
2011-06-15 05:40:34 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
final CharSequence 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.
|
2011-05-26 05:10:00 +00:00
|
|
|
final Object[] args =
|
2012-04-17 06:39:15 +00:00
|
|
|
{ context, null, suggestionsList.toArray(new String[suggestionsList.size()]), 0,
|
2011-05-26 05:10:00 +00:00
|
|
|
(Class<?>) SuggestionSpanPickedNotificationReceiver.class };
|
2011-05-24 11:30:30 +00:00
|
|
|
final Object ss = CompatUtils.newInstance(CONSTRUCTOR_SuggestionSpan, args);
|
|
|
|
if (ss == null) {
|
2011-06-17 09:25:36 +00:00
|
|
|
return pickedWord;
|
2011-05-24 11:30:30 +00:00
|
|
|
}
|
2011-06-17 09:25:36 +00:00
|
|
|
spannable.setSpan(ss, 0, pickedWord.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
|
2011-05-24 11:30:30 +00:00
|
|
|
return spannable;
|
|
|
|
}
|
|
|
|
}
|