2011-12-08 13:10:40 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2011 The Android Open Source Project
|
|
|
|
*
|
2013-01-21 12:52:57 +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
|
2011-12-08 13:10:40 +00:00
|
|
|
*
|
2013-01-21 12:52:57 +00:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2011-12-08 13:10:40 +00:00
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
2013-01-21 12:52:57 +00:00
|
|
|
* 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.
|
2011-12-08 13:10:40 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
package com.android.inputmethod.latin;
|
|
|
|
|
|
|
|
import android.content.SharedPreferences;
|
2012-06-08 12:26:25 +00:00
|
|
|
import android.content.res.Configuration;
|
2011-12-08 13:10:40 +00:00
|
|
|
import android.content.res.Resources;
|
|
|
|
import android.util.Log;
|
|
|
|
import android.view.inputmethod.EditorInfo;
|
|
|
|
|
2012-02-02 06:41:11 +00:00
|
|
|
import com.android.inputmethod.keyboard.internal.KeySpecParser;
|
2012-04-02 07:33:24 +00:00
|
|
|
import com.android.inputmethod.latin.SuggestedWords.SuggestedWordInfo;
|
2011-12-08 13:10:40 +00:00
|
|
|
|
2012-03-13 05:18:30 +00:00
|
|
|
import java.util.ArrayList;
|
2011-12-08 13:10:40 +00:00
|
|
|
import java.util.Arrays;
|
|
|
|
|
2012-04-03 05:28:56 +00:00
|
|
|
/**
|
|
|
|
* When you call the constructor of this class, you may want to change the current system locale by
|
|
|
|
* using {@link LocaleUtils.RunInLocale}.
|
|
|
|
*/
|
2012-09-04 07:54:01 +00:00
|
|
|
public final class SettingsValues {
|
2011-12-08 13:10:40 +00:00
|
|
|
private static final String TAG = SettingsValues.class.getSimpleName();
|
|
|
|
|
|
|
|
// From resources:
|
|
|
|
public final int mDelayUpdateOldSuggestions;
|
2013-01-11 11:23:48 +00:00
|
|
|
public final int[] mSymbolsPrecededBySpace;
|
|
|
|
public final int[] mSymbolsFollowedBySpace;
|
|
|
|
public final int[] mWordConnectors;
|
2011-12-08 13:10:40 +00:00
|
|
|
public final SuggestedWords mSuggestPuncList;
|
2011-12-09 09:19:30 +00:00
|
|
|
public final String mWordSeparators;
|
2011-12-08 13:10:40 +00:00
|
|
|
public final CharSequence mHintToSaveText;
|
|
|
|
|
2011-12-09 07:41:05 +00:00
|
|
|
// From preferences, in the same order as xml/prefs.xml:
|
|
|
|
public final boolean mAutoCap;
|
2011-12-08 13:10:40 +00:00
|
|
|
public final boolean mVibrateOn;
|
2011-12-09 07:41:05 +00:00
|
|
|
public final boolean mSoundOn;
|
2011-12-08 13:10:40 +00:00
|
|
|
public final boolean mKeyPreviewPopupOn;
|
2011-12-09 10:03:55 +00:00
|
|
|
private final String mVoiceMode;
|
2012-02-18 01:46:01 +00:00
|
|
|
public final boolean mIncludesOtherImesInLanguageSwitchList;
|
2012-09-20 01:32:56 +00:00
|
|
|
public final boolean mShowsLanguageSwitchKey;
|
2011-12-09 07:41:05 +00:00
|
|
|
public final boolean mUseContactsDict;
|
2012-12-04 06:24:55 +00:00
|
|
|
public final boolean mUseDoubleSpacePeriod;
|
2012-06-16 01:40:16 +00:00
|
|
|
// Use bigrams to predict the next word when there is no input for it yet
|
2011-12-08 13:10:40 +00:00
|
|
|
public final boolean mBigramPredictionEnabled;
|
2012-07-20 08:49:06 +00:00
|
|
|
public final boolean mGestureInputEnabled;
|
2012-07-27 06:32:29 +00:00
|
|
|
public final boolean mGesturePreviewTrailEnabled;
|
|
|
|
public final boolean mGestureFloatingPreviewTextEnabled;
|
2013-01-24 07:08:33 +00:00
|
|
|
public final boolean mSlidingKeyInputPreviewEnabled;
|
2013-01-18 03:19:59 +00:00
|
|
|
public final int mKeyLongpressTimeout;
|
2011-12-08 13:10:40 +00:00
|
|
|
|
2012-06-12 00:35:51 +00:00
|
|
|
// From the input box
|
2013-01-08 07:35:21 +00:00
|
|
|
public final InputAttributes mInputAttributes;
|
2012-06-12 00:35:51 +00:00
|
|
|
|
2011-12-08 13:21:26 +00:00
|
|
|
// Deduced settings
|
|
|
|
public final int mKeypressVibrationDuration;
|
2013-01-08 09:20:31 +00:00
|
|
|
public final float mKeypressSoundVolume;
|
2011-12-09 07:41:05 +00:00
|
|
|
public final int mKeyPreviewPopupDismissDelay;
|
2012-06-08 13:09:20 +00:00
|
|
|
private final boolean mAutoCorrectEnabled;
|
2012-05-16 11:42:12 +00:00
|
|
|
public final float mAutoCorrectionThreshold;
|
2012-06-16 01:59:12 +00:00
|
|
|
public final boolean mCorrectionEnabled;
|
2012-06-08 12:26:25 +00:00
|
|
|
public final int mSuggestionVisibility;
|
2011-12-09 07:41:05 +00:00
|
|
|
private final boolean mVoiceKeyEnabled;
|
|
|
|
private final boolean mVoiceKeyOnMain;
|
2011-12-08 13:21:26 +00:00
|
|
|
|
2013-01-08 05:58:08 +00:00
|
|
|
public SettingsValues(final SharedPreferences prefs, final Resources res,
|
|
|
|
final InputAttributes inputAttributes) {
|
2011-12-08 13:10:40 +00:00
|
|
|
// Get the resources
|
2011-12-09 09:19:30 +00:00
|
|
|
mDelayUpdateOldSuggestions = res.getInteger(R.integer.config_delay_update_old_suggestions);
|
2013-01-11 11:23:48 +00:00
|
|
|
mSymbolsPrecededBySpace =
|
|
|
|
StringUtils.toCodePointArray(res.getString(R.string.symbols_preceded_by_space));
|
|
|
|
Arrays.sort(mSymbolsPrecededBySpace);
|
|
|
|
mSymbolsFollowedBySpace =
|
|
|
|
StringUtils.toCodePointArray(res.getString(R.string.symbols_followed_by_space));
|
|
|
|
Arrays.sort(mSymbolsFollowedBySpace);
|
|
|
|
mWordConnectors =
|
|
|
|
StringUtils.toCodePointArray(res.getString(R.string.symbols_word_connectors));
|
|
|
|
Arrays.sort(mWordConnectors);
|
2012-02-02 06:56:38 +00:00
|
|
|
final String[] suggestPuncsSpec = KeySpecParser.parseCsvString(
|
2012-04-05 05:59:55 +00:00
|
|
|
res.getString(R.string.suggested_punctuations), null);
|
2012-02-01 09:14:32 +00:00
|
|
|
mSuggestPuncList = createSuggestPuncList(suggestPuncsSpec);
|
2013-01-11 11:23:48 +00:00
|
|
|
mWordSeparators = res.getString(R.string.symbols_word_separators);
|
2013-01-08 05:58:08 +00:00
|
|
|
mHintToSaveText = res.getText(R.string.hint_add_to_dictionary);
|
2011-12-08 13:10:40 +00:00
|
|
|
|
2012-06-12 00:35:51 +00:00
|
|
|
// Store the input attributes
|
|
|
|
if (null == inputAttributes) {
|
|
|
|
mInputAttributes = new InputAttributes(null, false /* isFullscreenMode */);
|
|
|
|
} else {
|
|
|
|
mInputAttributes = inputAttributes;
|
|
|
|
}
|
|
|
|
|
2011-12-08 13:10:40 +00:00
|
|
|
// Get the settings preferences
|
2011-12-09 09:54:07 +00:00
|
|
|
mAutoCap = prefs.getBoolean(Settings.PREF_AUTO_CAP, true);
|
2013-01-22 04:29:30 +00:00
|
|
|
mVibrateOn = Settings.readVibrationEnabled(prefs, res);
|
|
|
|
mSoundOn = Settings.readKeypressSoundEnabled(prefs, res);
|
2013-01-08 09:20:31 +00:00
|
|
|
mKeyPreviewPopupOn = Settings.readKeyPreviewPopupEnabled(prefs, res);
|
2013-01-24 07:08:33 +00:00
|
|
|
mSlidingKeyInputPreviewEnabled = prefs.getBoolean(
|
|
|
|
Settings.PREF_SLIDING_KEY_INPUT_PREVIEW, true);
|
2011-12-09 10:03:55 +00:00
|
|
|
final String voiceModeMain = res.getString(R.string.voice_mode_main);
|
|
|
|
final String voiceModeOff = res.getString(R.string.voice_mode_off);
|
|
|
|
mVoiceMode = prefs.getString(Settings.PREF_VOICE_MODE, voiceModeMain);
|
2013-01-10 03:33:09 +00:00
|
|
|
final String autoCorrectionThresholdRawValue = prefs.getString(
|
|
|
|
Settings.PREF_AUTO_CORRECTION_THRESHOLD,
|
2011-12-09 10:03:55 +00:00
|
|
|
res.getString(R.string.auto_correction_threshold_mode_index_modest));
|
2012-02-18 01:46:01 +00:00
|
|
|
mIncludesOtherImesInLanguageSwitchList = prefs.getBoolean(
|
|
|
|
Settings.PREF_INCLUDE_OTHER_IMES_IN_LANGUAGE_SWITCH_LIST, false);
|
2013-01-08 09:20:31 +00:00
|
|
|
mShowsLanguageSwitchKey = Settings.readShowsLanguageSwitchKey(prefs);
|
2011-12-09 09:54:07 +00:00
|
|
|
mUseContactsDict = prefs.getBoolean(Settings.PREF_KEY_USE_CONTACTS_DICT, true);
|
2012-12-04 06:24:55 +00:00
|
|
|
mUseDoubleSpacePeriod = prefs.getBoolean(Settings.PREF_KEY_USE_DOUBLE_SPACE_PERIOD, true);
|
2013-01-22 04:29:30 +00:00
|
|
|
mAutoCorrectEnabled = Settings.readAutoCorrectEnabled(autoCorrectionThresholdRawValue, res);
|
2013-01-08 09:20:31 +00:00
|
|
|
mBigramPredictionEnabled = readBigramPredictionEnabled(prefs, res);
|
2011-12-09 09:54:07 +00:00
|
|
|
|
|
|
|
// Compute other readable settings
|
2013-01-18 03:19:59 +00:00
|
|
|
mKeyLongpressTimeout = Settings.readKeyLongpressTimeout(prefs, res);
|
2013-01-10 03:06:00 +00:00
|
|
|
mKeypressVibrationDuration = Settings.readKeypressVibrationDuration(prefs, res);
|
2013-01-08 09:20:31 +00:00
|
|
|
mKeypressSoundVolume = Settings.readKeypressSoundVolume(prefs, res);
|
|
|
|
mKeyPreviewPopupDismissDelay = Settings.readKeyPreviewPopupDismissDelay(prefs, res);
|
|
|
|
mAutoCorrectionThreshold = readAutoCorrectionThreshold(res,
|
2013-01-10 03:33:09 +00:00
|
|
|
autoCorrectionThresholdRawValue);
|
2011-12-09 10:03:55 +00:00
|
|
|
mVoiceKeyEnabled = mVoiceMode != null && !mVoiceMode.equals(voiceModeOff);
|
|
|
|
mVoiceKeyOnMain = mVoiceMode != null && mVoiceMode.equals(voiceModeMain);
|
2013-01-22 04:29:30 +00:00
|
|
|
mGestureInputEnabled = Settings.readGestureInputEnabled(prefs, res);
|
2012-07-27 06:32:29 +00:00
|
|
|
mGesturePreviewTrailEnabled = prefs.getBoolean(Settings.PREF_GESTURE_PREVIEW_TRAIL, true);
|
|
|
|
mGestureFloatingPreviewTextEnabled = prefs.getBoolean(
|
2012-10-02 01:30:03 +00:00
|
|
|
Settings.PREF_GESTURE_FLOATING_PREVIEW_TEXT, true);
|
2012-06-16 01:59:12 +00:00
|
|
|
mCorrectionEnabled = mAutoCorrectEnabled && !mInputAttributes.mInputTypeNoAutoCorrect;
|
2013-01-10 03:33:09 +00:00
|
|
|
final String showSuggestionsSetting = prefs.getString(
|
|
|
|
Settings.PREF_SHOW_SUGGESTIONS_SETTING,
|
|
|
|
res.getString(R.string.prefs_suggestion_visibility_default_value));
|
|
|
|
mSuggestionVisibility = createSuggestionVisibility(res, showSuggestionsSetting);
|
2011-12-08 13:10:40 +00:00
|
|
|
}
|
|
|
|
|
2012-06-12 00:35:51 +00:00
|
|
|
public boolean isApplicationSpecifiedCompletionsOn() {
|
|
|
|
return mInputAttributes.mApplicationSpecifiedCompletionOn;
|
|
|
|
}
|
|
|
|
|
2012-06-12 01:00:07 +00:00
|
|
|
public boolean isSuggestionsRequested(final int displayOrientation) {
|
2012-06-12 01:03:04 +00:00
|
|
|
return mInputAttributes.mIsSettingsSuggestionStripOn
|
2012-06-16 02:03:22 +00:00
|
|
|
&& (mCorrectionEnabled
|
|
|
|
|| isSuggestionStripVisibleInOrientation(displayOrientation));
|
2012-06-08 12:56:44 +00:00
|
|
|
}
|
|
|
|
|
2012-06-08 12:26:25 +00:00
|
|
|
public boolean isSuggestionStripVisibleInOrientation(final int orientation) {
|
|
|
|
return (mSuggestionVisibility == SUGGESTION_VISIBILITY_SHOW_VALUE)
|
|
|
|
|| (mSuggestionVisibility == SUGGESTION_VISIBILITY_SHOW_ONLY_PORTRAIT_VALUE
|
|
|
|
&& orientation == Configuration.ORIENTATION_PORTRAIT);
|
|
|
|
}
|
|
|
|
|
2012-09-04 07:54:01 +00:00
|
|
|
public boolean isWordSeparator(final int code) {
|
2011-12-08 13:10:40 +00:00
|
|
|
return mWordSeparators.contains(String.valueOf((char)code));
|
|
|
|
}
|
|
|
|
|
2013-01-11 11:23:48 +00:00
|
|
|
public boolean isWordConnector(final int code) {
|
|
|
|
return Arrays.binarySearch(mWordConnectors, code) >= 0;
|
2011-12-08 13:10:40 +00:00
|
|
|
}
|
|
|
|
|
2013-01-11 11:23:48 +00:00
|
|
|
public boolean isUsuallyPrecededBySpace(final int code) {
|
|
|
|
return Arrays.binarySearch(mSymbolsPrecededBySpace, code) >= 0;
|
2011-12-08 13:10:40 +00:00
|
|
|
}
|
|
|
|
|
2013-01-11 11:23:48 +00:00
|
|
|
public boolean isUsuallyFollowedBySpace(final int code) {
|
|
|
|
return Arrays.binarySearch(mSymbolsFollowedBySpace, code) >= 0;
|
2012-03-06 05:00:34 +00:00
|
|
|
}
|
|
|
|
|
2012-11-13 06:10:07 +00:00
|
|
|
public boolean shouldInsertSpacesAutomatically() {
|
|
|
|
return mInputAttributes.mShouldInsertSpacesAutomatically;
|
|
|
|
}
|
|
|
|
|
2011-12-09 09:54:07 +00:00
|
|
|
public boolean isVoiceKeyEnabled(final EditorInfo editorInfo) {
|
2011-12-08 13:10:40 +00:00
|
|
|
final boolean shortcutImeEnabled = SubtypeSwitcher.getInstance().isShortcutImeEnabled();
|
|
|
|
final int inputType = (editorInfo != null) ? editorInfo.inputType : 0;
|
|
|
|
return shortcutImeEnabled && mVoiceKeyEnabled
|
2012-04-02 13:43:38 +00:00
|
|
|
&& !InputTypeUtils.isPasswordInputType(inputType);
|
2011-12-08 13:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isVoiceKeyOnMain() {
|
|
|
|
return mVoiceKeyOnMain;
|
|
|
|
}
|
2011-12-08 13:14:54 +00:00
|
|
|
|
2012-11-09 09:21:41 +00:00
|
|
|
public boolean isLanguageSwitchKeyEnabled() {
|
2012-09-20 01:32:56 +00:00
|
|
|
if (!mShowsLanguageSwitchKey) {
|
2012-02-18 01:46:01 +00:00
|
|
|
return false;
|
|
|
|
}
|
2012-11-09 09:21:41 +00:00
|
|
|
final RichInputMethodManager imm = RichInputMethodManager.getInstance();
|
2012-02-18 01:46:01 +00:00
|
|
|
if (mIncludesOtherImesInLanguageSwitchList) {
|
2012-11-09 09:21:41 +00:00
|
|
|
return imm.hasMultipleEnabledIMEsOrSubtypes(false /* include aux subtypes */);
|
2012-02-18 01:46:01 +00:00
|
|
|
} else {
|
2012-11-09 09:21:41 +00:00
|
|
|
return imm.hasMultipleEnabledSubtypesInThisIme(false /* include aux subtypes */);
|
2012-02-18 01:46:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-08 09:20:31 +00:00
|
|
|
public boolean isSameInputType(final EditorInfo editorInfo) {
|
|
|
|
return mInputAttributes.isSameInputType(editorInfo);
|
2012-01-16 02:32:49 +00:00
|
|
|
}
|
|
|
|
|
2013-01-08 09:20:31 +00:00
|
|
|
// Helper functions to create member values.
|
|
|
|
private static SuggestedWords createSuggestPuncList(final String[] puncs) {
|
|
|
|
final ArrayList<SuggestedWordInfo> puncList = CollectionUtils.newArrayList();
|
|
|
|
if (puncs != null) {
|
|
|
|
for (final String puncSpec : puncs) {
|
|
|
|
puncList.add(new SuggestedWordInfo(KeySpecParser.getLabel(puncSpec),
|
|
|
|
SuggestedWordInfo.MAX_SCORE, SuggestedWordInfo.KIND_HARDCODED,
|
|
|
|
Dictionary.TYPE_HARDCODED));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return new SuggestedWords(puncList,
|
|
|
|
false /* typedWordValid */,
|
|
|
|
false /* hasAutoCorrectionCandidate */,
|
|
|
|
true /* isPunctuationSuggestions */,
|
|
|
|
false /* isObsoleteSuggestions */,
|
|
|
|
false /* isPrediction */);
|
2012-04-11 09:21:10 +00:00
|
|
|
}
|
|
|
|
|
2013-01-08 09:20:31 +00:00
|
|
|
private static final int SUGGESTION_VISIBILITY_SHOW_VALUE =
|
|
|
|
R.string.prefs_suggestion_visibility_show_value;
|
|
|
|
private static final int SUGGESTION_VISIBILITY_SHOW_ONLY_PORTRAIT_VALUE =
|
|
|
|
R.string.prefs_suggestion_visibility_show_only_portrait_value;
|
|
|
|
private static final int SUGGESTION_VISIBILITY_HIDE_VALUE =
|
|
|
|
R.string.prefs_suggestion_visibility_hide_value;
|
|
|
|
private static final int[] SUGGESTION_VISIBILITY_VALUE_ARRAY = new int[] {
|
|
|
|
SUGGESTION_VISIBILITY_SHOW_VALUE,
|
|
|
|
SUGGESTION_VISIBILITY_SHOW_ONLY_PORTRAIT_VALUE,
|
|
|
|
SUGGESTION_VISIBILITY_HIDE_VALUE
|
|
|
|
};
|
|
|
|
|
2013-01-10 03:33:09 +00:00
|
|
|
private static int createSuggestionVisibility(final Resources res,
|
|
|
|
final String suggestionVisiblityStr) {
|
2013-01-08 09:20:31 +00:00
|
|
|
for (int visibility : SUGGESTION_VISIBILITY_VALUE_ARRAY) {
|
|
|
|
if (suggestionVisiblityStr.equals(res.getString(visibility))) {
|
|
|
|
return visibility;
|
|
|
|
}
|
2011-12-08 13:14:54 +00:00
|
|
|
}
|
2013-01-08 09:20:31 +00:00
|
|
|
throw new RuntimeException("Bug: visibility string is not configured correctly");
|
2011-12-08 13:14:54 +00:00
|
|
|
}
|
2011-12-09 11:16:57 +00:00
|
|
|
|
2013-01-08 09:20:31 +00:00
|
|
|
private static boolean readBigramPredictionEnabled(final SharedPreferences prefs,
|
|
|
|
final Resources res) {
|
|
|
|
return prefs.getBoolean(Settings.PREF_BIGRAM_PREDICTIONS, res.getBoolean(
|
|
|
|
R.bool.config_default_next_word_prediction));
|
2012-05-18 12:28:09 +00:00
|
|
|
}
|
2012-06-12 00:35:51 +00:00
|
|
|
|
2013-01-08 09:20:31 +00:00
|
|
|
private static float readAutoCorrectionThreshold(final Resources res,
|
|
|
|
final String currentAutoCorrectionSetting) {
|
|
|
|
final String[] autoCorrectionThresholdValues = res.getStringArray(
|
|
|
|
R.array.auto_correction_threshold_values);
|
|
|
|
// When autoCorrectionThreshold is greater than 1.0, it's like auto correction is off.
|
|
|
|
float autoCorrectionThreshold = Float.MAX_VALUE;
|
|
|
|
try {
|
|
|
|
final int arrayIndex = Integer.valueOf(currentAutoCorrectionSetting);
|
|
|
|
if (arrayIndex >= 0 && arrayIndex < autoCorrectionThresholdValues.length) {
|
|
|
|
autoCorrectionThreshold = Float.parseFloat(
|
|
|
|
autoCorrectionThresholdValues[arrayIndex]);
|
|
|
|
}
|
|
|
|
} catch (NumberFormatException e) {
|
|
|
|
// Whenever the threshold settings are correct, never come here.
|
|
|
|
autoCorrectionThreshold = Float.MAX_VALUE;
|
|
|
|
Log.w(TAG, "Cannot load auto correction threshold setting."
|
|
|
|
+ " currentAutoCorrectionSetting: " + currentAutoCorrectionSetting
|
|
|
|
+ ", autoCorrectionThresholdValues: "
|
|
|
|
+ Arrays.toString(autoCorrectionThresholdValues));
|
|
|
|
}
|
|
|
|
return autoCorrectionThreshold;
|
2012-08-15 08:57:38 +00:00
|
|
|
}
|
2011-12-08 13:14:54 +00:00
|
|
|
}
|