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
|
|
|
*/
|
|
|
|
|
2013-07-22 03:43:37 +00:00
|
|
|
package com.android.inputmethod.latin.settings;
|
2011-12-08 13:10:40 +00:00
|
|
|
|
2013-12-20 06:00:44 +00:00
|
|
|
import android.content.Context;
|
2011-12-08 13:10:40 +00:00
|
|
|
import android.content.SharedPreferences;
|
2013-12-20 06:00:44 +00:00
|
|
|
import android.content.pm.PackageInfo;
|
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;
|
|
|
|
|
2013-12-20 06:00:44 +00:00
|
|
|
import com.android.inputmethod.compat.AppWorkaroundsUtils;
|
2013-07-22 03:43:37 +00:00
|
|
|
import com.android.inputmethod.latin.InputAttributes;
|
|
|
|
import com.android.inputmethod.latin.R;
|
|
|
|
import com.android.inputmethod.latin.RichInputMethodManager;
|
2013-12-20 06:00:44 +00:00
|
|
|
import com.android.inputmethod.latin.utils.AsyncResultHolder;
|
|
|
|
import com.android.inputmethod.latin.utils.TargetPackageInfoGetterTask;
|
2011-12-08 13:10:40 +00:00
|
|
|
|
|
|
|
import java.util.Arrays;
|
2013-07-30 03:54:33 +00:00
|
|
|
import java.util.Locale;
|
2011-12-08 13:10:40 +00:00
|
|
|
|
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
|
2013-07-24 06:58:11 +00:00
|
|
|
* using {@link com.android.inputmethod.latin.utils.RunInLocale}.
|
2012-04-03 05:28:56 +00:00
|
|
|
*/
|
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();
|
2013-10-04 10:04:16 +00:00
|
|
|
// "floatMaxValue" and "floatNegativeInfinity" are special marker strings for
|
|
|
|
// Float.NEGATIVE_INFINITE and Float.MAX_VALUE. Currently used for auto-correction settings.
|
|
|
|
private static final String FLOAT_MAX_VALUE_MARKER_STRING = "floatMaxValue";
|
2013-04-24 05:43:29 +00:00
|
|
|
private static final String FLOAT_NEGATIVE_INFINITY_MARKER_STRING = "floatNegativeInfinity";
|
2013-12-20 06:00:44 +00:00
|
|
|
private static final int TIMEOUT_TO_GET_TARGET_PACKAGE = 5; // seconds
|
2011-12-08 13:10:40 +00:00
|
|
|
|
|
|
|
// From resources:
|
2014-01-08 09:06:32 +00:00
|
|
|
public final SpacingAndPunctuations mSpacingAndPunctuations;
|
2011-12-08 13:10:40 +00:00
|
|
|
public final int mDelayUpdateOldSuggestions;
|
|
|
|
|
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;
|
2013-12-13 08:09:16 +00:00
|
|
|
public final boolean mShowsVoiceInputKey;
|
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;
|
2013-12-16 10:17:31 +00:00
|
|
|
public final boolean mUsePersonalizedDicts;
|
2012-12-04 06:24:55 +00:00
|
|
|
public final boolean mUseDoubleSpacePeriod;
|
2013-04-23 03:19:31 +00:00
|
|
|
public final boolean mBlockPotentiallyOffensive;
|
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;
|
2013-08-09 12:07:40 +00:00
|
|
|
public final boolean mGestureTrailEnabled;
|
2012-07-27 06:32:29 +00:00
|
|
|
public final boolean mGestureFloatingPreviewTextEnabled;
|
2013-01-24 07:08:33 +00:00
|
|
|
public final boolean mSlidingKeyInputPreviewEnabled;
|
2013-09-13 06:50:38 +00:00
|
|
|
public final boolean mPhraseGestureEnabled;
|
2013-01-18 03:19:59 +00:00
|
|
|
public final int mKeyLongpressTimeout;
|
2013-07-30 03:54:33 +00:00
|
|
|
public final Locale mLocale;
|
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;
|
2013-08-20 05:42:53 +00:00
|
|
|
public final boolean mUseOnlyPersonalizationDictionaryForDebug;
|
2013-12-20 07:34:38 +00:00
|
|
|
public final int mDisplayOrientation;
|
2013-12-20 06:00:44 +00:00
|
|
|
private final AsyncResultHolder<AppWorkaroundsUtils> mAppWorkarounds;
|
2011-12-08 13:21:26 +00:00
|
|
|
|
2013-05-28 07:27:48 +00:00
|
|
|
// Setting values for additional features
|
|
|
|
public final int[] mAdditionalFeaturesSettingValues =
|
|
|
|
new int[AdditionalFeaturesSettingUtils.ADDITIONAL_FEATURES_SETTINGS_SIZE];
|
|
|
|
|
2013-03-13 04:08:34 +00:00
|
|
|
// Debug settings
|
|
|
|
public final boolean mIsInternal;
|
|
|
|
|
2014-01-09 07:59:23 +00:00
|
|
|
public SettingsValues(final Context context, final SharedPreferences prefs, final Resources res,
|
|
|
|
final InputAttributes inputAttributes) {
|
|
|
|
mLocale = res.getConfiguration().locale;
|
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);
|
2014-01-08 09:06:32 +00:00
|
|
|
mSpacingAndPunctuations = new SpacingAndPunctuations(res);
|
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);
|
2013-09-05 06:46:04 +00:00
|
|
|
mShowsVoiceInputKey = needsToShowVoiceInputKey(prefs, res);
|
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);
|
2013-12-16 10:17:31 +00:00
|
|
|
mUsePersonalizedDicts = prefs.getBoolean(Settings.PREF_KEY_USE_PERSONALIZED_DICTS, true);
|
2012-12-04 06:24:55 +00:00
|
|
|
mUseDoubleSpacePeriod = prefs.getBoolean(Settings.PREF_KEY_USE_DOUBLE_SPACE_PERIOD, true);
|
2013-04-23 03:19:31 +00:00
|
|
|
mBlockPotentiallyOffensive = Settings.readBlockPotentiallyOffensive(prefs, res);
|
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);
|
2013-01-22 04:29:30 +00:00
|
|
|
mGestureInputEnabled = Settings.readGestureInputEnabled(prefs, res);
|
2013-08-09 12:07:40 +00:00
|
|
|
mGestureTrailEnabled = prefs.getBoolean(Settings.PREF_GESTURE_PREVIEW_TRAIL, true);
|
2012-07-27 06:32:29 +00:00
|
|
|
mGestureFloatingPreviewTextEnabled = prefs.getBoolean(
|
2012-10-02 01:30:03 +00:00
|
|
|
Settings.PREF_GESTURE_FLOATING_PREVIEW_TEXT, true);
|
2013-09-13 06:50:38 +00:00
|
|
|
mPhraseGestureEnabled = Settings.readPhraseGestureEnabled(prefs, res);
|
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);
|
2013-05-28 07:27:48 +00:00
|
|
|
AdditionalFeaturesSettingUtils.readAdditionalFeaturesPreferencesIntoArray(
|
|
|
|
prefs, mAdditionalFeaturesSettingValues);
|
2013-03-13 04:08:34 +00:00
|
|
|
mIsInternal = Settings.isInternal(prefs);
|
2013-12-25 09:53:04 +00:00
|
|
|
mUseOnlyPersonalizationDictionaryForDebug = prefs.getBoolean(
|
|
|
|
DebugSettings.PREF_USE_ONLY_PERSONALIZATION_DICTIONARY_FOR_DEBUG, false);
|
2013-12-20 07:34:38 +00:00
|
|
|
mDisplayOrientation = res.getConfiguration().orientation;
|
2013-12-20 06:00:44 +00:00
|
|
|
mAppWorkarounds = new AsyncResultHolder<AppWorkaroundsUtils>();
|
|
|
|
final PackageInfo packageInfo = TargetPackageInfoGetterTask.getCachedPackageInfo(
|
|
|
|
mInputAttributes.mTargetApplicationPackageName);
|
|
|
|
if (null != packageInfo) {
|
|
|
|
mAppWorkarounds.set(new AppWorkaroundsUtils(packageInfo));
|
|
|
|
} else {
|
|
|
|
new TargetPackageInfoGetterTask(context, mAppWorkarounds)
|
|
|
|
.execute(mInputAttributes.mTargetApplicationPackageName);
|
|
|
|
}
|
2011-12-08 13:10:40 +00:00
|
|
|
}
|
|
|
|
|
2012-06-12 00:35:51 +00:00
|
|
|
public boolean isApplicationSpecifiedCompletionsOn() {
|
|
|
|
return mInputAttributes.mApplicationSpecifiedCompletionOn;
|
|
|
|
}
|
|
|
|
|
2013-12-20 07:34:38 +00:00
|
|
|
public boolean isSuggestionsRequested() {
|
2012-06-12 01:03:04 +00:00
|
|
|
return mInputAttributes.mIsSettingsSuggestionStripOn
|
2013-12-20 07:34:38 +00:00
|
|
|
&& (mCorrectionEnabled || isSuggestionStripVisible());
|
2012-06-08 12:56:44 +00:00
|
|
|
}
|
|
|
|
|
2013-12-20 07:34:38 +00:00
|
|
|
public boolean isSuggestionStripVisible() {
|
2012-06-08 12:26:25 +00:00
|
|
|
return (mSuggestionVisibility == SUGGESTION_VISIBILITY_SHOW_VALUE)
|
|
|
|
|| (mSuggestionVisibility == SUGGESTION_VISIBILITY_SHOW_ONLY_PORTRAIT_VALUE
|
2013-12-20 07:34:38 +00:00
|
|
|
&& mDisplayOrientation == Configuration.ORIENTATION_PORTRAIT);
|
2012-06-08 12:26:25 +00:00
|
|
|
}
|
|
|
|
|
2012-09-04 07:54:01 +00:00
|
|
|
public boolean isWordSeparator(final int code) {
|
2014-01-08 09:06:32 +00:00
|
|
|
return mSpacingAndPunctuations.isWordSeparator(code);
|
2011-12-08 13:10:40 +00:00
|
|
|
}
|
|
|
|
|
2013-01-11 11:23:48 +00:00
|
|
|
public boolean isWordConnector(final int code) {
|
2014-01-08 09:06:32 +00:00
|
|
|
return mSpacingAndPunctuations.isWordConnector(code);
|
2011-12-08 13:10:40 +00:00
|
|
|
}
|
|
|
|
|
2013-08-14 08:34:25 +00:00
|
|
|
public boolean isWordCodePoint(final int code) {
|
|
|
|
return Character.isLetter(code) || isWordConnector(code);
|
|
|
|
}
|
|
|
|
|
2013-01-11 11:23:48 +00:00
|
|
|
public boolean isUsuallyPrecededBySpace(final int code) {
|
2014-01-08 09:06:32 +00:00
|
|
|
return mSpacingAndPunctuations.isUsuallyPrecededBySpace(code);
|
2011-12-08 13:10:40 +00:00
|
|
|
}
|
|
|
|
|
2013-01-11 11:23:48 +00:00
|
|
|
public boolean isUsuallyFollowedBySpace(final int code) {
|
2014-01-08 09:06:32 +00:00
|
|
|
return mSpacingAndPunctuations.isUsuallyFollowedBySpace(code);
|
2012-03-06 05:00:34 +00:00
|
|
|
}
|
|
|
|
|
2012-11-13 06:10:07 +00:00
|
|
|
public boolean shouldInsertSpacesAutomatically() {
|
|
|
|
return mInputAttributes.mShouldInsertSpacesAutomatically;
|
|
|
|
}
|
|
|
|
|
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-12-20 07:34:38 +00:00
|
|
|
public boolean hasSameOrientation(final Configuration configuration) {
|
|
|
|
return mDisplayOrientation == configuration.orientation;
|
|
|
|
}
|
|
|
|
|
2013-12-20 06:00:44 +00:00
|
|
|
public boolean isBeforeJellyBean() {
|
2013-12-20 09:13:05 +00:00
|
|
|
final AppWorkaroundsUtils appWorkaroundUtils
|
|
|
|
= mAppWorkarounds.get(null, TIMEOUT_TO_GET_TARGET_PACKAGE);
|
|
|
|
return null == appWorkaroundUtils ? false : appWorkaroundUtils.isBeforeJellyBean();
|
2013-12-20 06:00:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isBrokenByRecorrection() {
|
2013-12-20 09:13:05 +00:00
|
|
|
final AppWorkaroundsUtils appWorkaroundUtils
|
|
|
|
= mAppWorkarounds.get(null, TIMEOUT_TO_GET_TARGET_PACKAGE);
|
2013-12-25 05:00:16 +00:00
|
|
|
return null == appWorkaroundUtils ? false : appWorkaroundUtils.isBrokenByRecorrection();
|
2013-12-20 06:00:44 +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.
|
2013-10-04 10:04:16 +00:00
|
|
|
final float autoCorrectionThreshold;
|
2013-01-08 09:20:31 +00:00
|
|
|
try {
|
|
|
|
final int arrayIndex = Integer.valueOf(currentAutoCorrectionSetting);
|
|
|
|
if (arrayIndex >= 0 && arrayIndex < autoCorrectionThresholdValues.length) {
|
2013-04-24 05:43:29 +00:00
|
|
|
final String val = autoCorrectionThresholdValues[arrayIndex];
|
2013-10-04 10:04:16 +00:00
|
|
|
if (FLOAT_MAX_VALUE_MARKER_STRING.equals(val)) {
|
|
|
|
autoCorrectionThreshold = Float.MAX_VALUE;
|
|
|
|
} else if (FLOAT_NEGATIVE_INFINITY_MARKER_STRING.equals(val)) {
|
2013-04-24 05:43:29 +00:00
|
|
|
autoCorrectionThreshold = Float.NEGATIVE_INFINITY;
|
|
|
|
} else {
|
|
|
|
autoCorrectionThreshold = Float.parseFloat(val);
|
|
|
|
}
|
2013-10-04 10:04:16 +00:00
|
|
|
} else {
|
|
|
|
autoCorrectionThreshold = Float.MAX_VALUE;
|
2013-01-08 09:20:31 +00:00
|
|
|
}
|
2013-10-04 10:04:16 +00:00
|
|
|
} catch (final NumberFormatException e) {
|
2013-01-08 09:20:31 +00:00
|
|
|
// Whenever the threshold settings are correct, never come here.
|
|
|
|
Log.w(TAG, "Cannot load auto correction threshold setting."
|
|
|
|
+ " currentAutoCorrectionSetting: " + currentAutoCorrectionSetting
|
|
|
|
+ ", autoCorrectionThresholdValues: "
|
2013-04-24 05:43:29 +00:00
|
|
|
+ Arrays.toString(autoCorrectionThresholdValues), e);
|
2013-10-04 10:04:16 +00:00
|
|
|
return Float.MAX_VALUE;
|
2013-01-08 09:20:31 +00:00
|
|
|
}
|
|
|
|
return autoCorrectionThreshold;
|
2012-08-15 08:57:38 +00:00
|
|
|
}
|
2013-09-05 06:46:04 +00:00
|
|
|
|
2013-12-13 08:09:16 +00:00
|
|
|
private static boolean needsToShowVoiceInputKey(final SharedPreferences prefs,
|
|
|
|
final Resources res) {
|
|
|
|
if (!prefs.contains(Settings.PREF_VOICE_INPUT_KEY)) {
|
|
|
|
// Migrate preference from {@link Settings#PREF_VOICE_MODE_OBSOLETE} to
|
|
|
|
// {@link Settings#PREF_VOICE_INPUT_KEY}.
|
|
|
|
final String voiceModeMain = res.getString(R.string.voice_mode_main);
|
|
|
|
final String voiceMode = prefs.getString(
|
|
|
|
Settings.PREF_VOICE_MODE_OBSOLETE, voiceModeMain);
|
|
|
|
final boolean shouldShowVoiceInputKey = voiceModeMain.equals(voiceMode);
|
|
|
|
prefs.edit().putBoolean(Settings.PREF_VOICE_INPUT_KEY, shouldShowVoiceInputKey).apply();
|
|
|
|
}
|
|
|
|
// Remove the obsolete preference if exists.
|
|
|
|
if (prefs.contains(Settings.PREF_VOICE_MODE_OBSOLETE)) {
|
|
|
|
prefs.edit().remove(Settings.PREF_VOICE_MODE_OBSOLETE).apply();
|
2013-09-05 06:46:04 +00:00
|
|
|
}
|
|
|
|
return prefs.getBoolean(Settings.PREF_VOICE_INPUT_KEY, true);
|
|
|
|
}
|
2011-12-08 13:14:54 +00:00
|
|
|
}
|