2011-12-08 13:10:40 +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.latin;
|
|
|
|
|
|
|
|
import android.content.Context;
|
|
|
|
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-04-11 09:21:10 +00:00
|
|
|
import android.view.inputmethod.InputMethodSubtype;
|
2011-12-08 13:10:40 +00:00
|
|
|
|
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-05-18 12:28:09 +00:00
|
|
|
import java.util.HashMap;
|
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
|
|
|
|
* 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();
|
|
|
|
|
2012-06-08 12:26:25 +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
|
|
|
|
};
|
|
|
|
|
2011-12-08 13:10:40 +00:00
|
|
|
// From resources:
|
|
|
|
public final int mDelayUpdateOldSuggestions;
|
2012-02-22 02:54:44 +00:00
|
|
|
public final String mWeakSpaceStrippers;
|
|
|
|
public final String mWeakSpaceSwappers;
|
2012-03-06 05:00:34 +00:00
|
|
|
private final String mPhantomSpacePromotingSymbols;
|
2011-12-08 13:10:40 +00:00
|
|
|
public final SuggestedWords mSuggestPuncList;
|
|
|
|
private final String mSymbolsExcludedFromWordSeparators;
|
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;
|
|
|
|
private final String mAutoCorrectionThresholdRawValue;
|
2011-12-09 11:16:57 +00:00
|
|
|
public final String mShowSuggestionsSetting;
|
2011-12-15 10:32:11 +00:00
|
|
|
@SuppressWarnings("unused") // TODO: Use this
|
2011-12-09 11:16:57 +00:00
|
|
|
private final boolean mUsabilityStudyMode;
|
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-15 10:32:11 +00:00
|
|
|
@SuppressWarnings("unused") // TODO: Use this
|
2011-12-09 11:16:57 +00:00
|
|
|
private final String mKeyPreviewPopupDismissDelayRawValue;
|
2011-12-09 07:41:05 +00:00
|
|
|
public final boolean mUseContactsDict;
|
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;
|
2011-12-15 10:32:11 +00:00
|
|
|
@SuppressWarnings("unused") // TODO: Use this
|
2011-12-09 11:26:28 +00:00
|
|
|
private final int mVibrationDurationSettingsRawValue;
|
2011-12-15 10:32:11 +00:00
|
|
|
@SuppressWarnings("unused") // TODO: Use this
|
2011-12-09 11:26:28 +00:00
|
|
|
private final float mKeypressSoundVolumeRawValue;
|
2012-04-18 13:13:29 +00:00
|
|
|
private final InputMethodSubtype[] mAdditionalSubtypes;
|
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;
|
2011-12-08 13:10:40 +00:00
|
|
|
|
2012-06-12 00:35:51 +00:00
|
|
|
// From the input box
|
|
|
|
private final InputAttributes mInputAttributes;
|
|
|
|
|
2011-12-08 13:21:26 +00:00
|
|
|
// Deduced settings
|
|
|
|
public final int mKeypressVibrationDuration;
|
|
|
|
public final float mFxVolume;
|
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
|
|
|
|
2012-06-08 12:10:35 +00:00
|
|
|
public SettingsValues(final SharedPreferences prefs, final InputAttributes inputAttributes,
|
|
|
|
final Context context) {
|
2011-12-08 13:10:40 +00:00
|
|
|
final Resources res = context.getResources();
|
|
|
|
|
|
|
|
// Get the resources
|
2011-12-09 09:19:30 +00:00
|
|
|
mDelayUpdateOldSuggestions = res.getInteger(R.integer.config_delay_update_old_suggestions);
|
2012-02-22 02:54:44 +00:00
|
|
|
mWeakSpaceStrippers = res.getString(R.string.weak_space_stripping_symbols);
|
|
|
|
mWeakSpaceSwappers = res.getString(R.string.weak_space_swapping_symbols);
|
2012-03-06 05:00:34 +00:00
|
|
|
mPhantomSpacePromotingSymbols = res.getString(R.string.phantom_space_promoting_symbols);
|
2012-01-12 03:00:01 +00:00
|
|
|
if (LatinImeLogger.sDBG) {
|
2012-02-22 02:54:44 +00:00
|
|
|
final int length = mWeakSpaceStrippers.length();
|
|
|
|
for (int i = 0; i < length; i = mWeakSpaceStrippers.offsetByCodePoints(i, 1)) {
|
|
|
|
if (isWeakSpaceSwapper(mWeakSpaceStrippers.codePointAt(i))) {
|
|
|
|
throw new RuntimeException("Char code " + mWeakSpaceStrippers.codePointAt(i)
|
|
|
|
+ " is both a weak space swapper and stripper.");
|
2012-01-12 03:00:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
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);
|
2011-12-09 09:19:30 +00:00
|
|
|
mSymbolsExcludedFromWordSeparators =
|
|
|
|
res.getString(R.string.symbols_excluded_from_word_separators);
|
2012-02-22 02:54:44 +00:00
|
|
|
mWordSeparators = createWordSeparators(mWeakSpaceStrippers, mWeakSpaceSwappers,
|
2011-12-09 09:19:30 +00:00
|
|
|
mSymbolsExcludedFromWordSeparators, res);
|
2011-12-08 13:10:40 +00:00
|
|
|
mHintToSaveText = context.getText(R.string.hint_add_to_dictionary);
|
|
|
|
|
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);
|
|
|
|
mVibrateOn = isVibrateOn(context, prefs, res);
|
2011-12-08 13:10:40 +00:00
|
|
|
mSoundOn = prefs.getBoolean(Settings.PREF_SOUND_ON,
|
|
|
|
res.getBoolean(R.bool.config_default_sound_enabled));
|
|
|
|
mKeyPreviewPopupOn = isKeyPreviewPopupEnabled(prefs, res);
|
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);
|
|
|
|
mAutoCorrectionThresholdRawValue = prefs.getString(Settings.PREF_AUTO_CORRECTION_THRESHOLD,
|
|
|
|
res.getString(R.string.auto_correction_threshold_mode_index_modest));
|
2011-12-09 11:16:57 +00:00
|
|
|
mShowSuggestionsSetting = prefs.getString(Settings.PREF_SHOW_SUGGESTIONS_SETTING,
|
|
|
|
res.getString(R.string.prefs_suggestion_visibility_default_value));
|
2011-12-15 10:32:11 +00:00
|
|
|
mUsabilityStudyMode = getUsabilityStudyMode(prefs);
|
2012-02-18 01:46:01 +00:00
|
|
|
mIncludesOtherImesInLanguageSwitchList = prefs.getBoolean(
|
|
|
|
Settings.PREF_INCLUDE_OTHER_IMES_IN_LANGUAGE_SWITCH_LIST, false);
|
2012-09-20 01:32:56 +00:00
|
|
|
mShowsLanguageSwitchKey = showsLanguageSwitchKey(prefs);
|
2011-12-09 11:16:57 +00:00
|
|
|
mKeyPreviewPopupDismissDelayRawValue = prefs.getString(
|
|
|
|
Settings.PREF_KEY_PREVIEW_POPUP_DISMISS_DELAY,
|
2012-01-25 11:14:39 +00:00
|
|
|
Integer.toString(res.getInteger(R.integer.config_key_preview_linger_timeout)));
|
2011-12-09 09:54:07 +00:00
|
|
|
mUseContactsDict = prefs.getBoolean(Settings.PREF_KEY_USE_CONTACTS_DICT, true);
|
2011-12-15 10:32:11 +00:00
|
|
|
mAutoCorrectEnabled = isAutoCorrectEnabled(res, mAutoCorrectionThresholdRawValue);
|
2012-06-16 01:40:16 +00:00
|
|
|
mBigramPredictionEnabled = isBigramPredictionEnabled(prefs, res);
|
2011-12-09 11:26:28 +00:00
|
|
|
mVibrationDurationSettingsRawValue =
|
|
|
|
prefs.getInt(Settings.PREF_VIBRATION_DURATION_SETTINGS, -1);
|
|
|
|
mKeypressSoundVolumeRawValue = prefs.getFloat(Settings.PREF_KEYPRESS_SOUND_VOLUME, -1.0f);
|
2011-12-09 09:54:07 +00:00
|
|
|
|
|
|
|
// Compute other readable settings
|
2011-12-09 09:58:24 +00:00
|
|
|
mKeypressVibrationDuration = getCurrentVibrationDuration(prefs, res);
|
|
|
|
mFxVolume = getCurrentKeypressSoundVolume(prefs, res);
|
2011-12-09 09:54:07 +00:00
|
|
|
mKeyPreviewPopupDismissDelay = getKeyPreviewPopupDismissDelay(prefs, res);
|
2011-12-15 10:32:11 +00:00
|
|
|
mAutoCorrectionThreshold = getAutoCorrectionThreshold(res,
|
2011-12-09 10:03:55 +00:00
|
|
|
mAutoCorrectionThresholdRawValue);
|
|
|
|
mVoiceKeyEnabled = mVoiceMode != null && !mVoiceMode.equals(voiceModeOff);
|
|
|
|
mVoiceKeyOnMain = mVoiceMode != null && mVoiceMode.equals(voiceModeMain);
|
2012-04-18 13:13:29 +00:00
|
|
|
mAdditionalSubtypes = AdditionalSubtype.createAdditionalSubtypesArray(
|
2012-04-19 07:39:25 +00:00
|
|
|
getPrefAdditionalSubtypes(prefs, res));
|
2012-07-20 08:49:06 +00:00
|
|
|
final boolean gestureInputEnabledByBuildConfig = res.getBoolean(
|
|
|
|
R.bool.config_gesture_input_enabled_by_build_config);
|
|
|
|
mGestureInputEnabled = gestureInputEnabledByBuildConfig
|
|
|
|
&& prefs.getBoolean(Settings.PREF_GESTURE_INPUT, true);
|
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;
|
2012-06-08 12:26:25 +00:00
|
|
|
mSuggestionVisibility = createSuggestionVisibility(res);
|
2011-12-08 13:10:40 +00:00
|
|
|
}
|
|
|
|
|
2011-12-09 09:19:30 +00:00
|
|
|
// Helper functions to create member values.
|
2012-02-01 09:14:32 +00:00
|
|
|
private static SuggestedWords createSuggestPuncList(final String[] puncs) {
|
2012-08-21 07:34:55 +00:00
|
|
|
final ArrayList<SuggestedWordInfo> puncList = CollectionUtils.newArrayList();
|
2012-02-01 09:14:32 +00:00
|
|
|
if (puncs != null) {
|
|
|
|
for (final String puncSpec : puncs) {
|
2012-06-12 16:10:18 +00:00
|
|
|
puncList.add(new SuggestedWordInfo(KeySpecParser.getLabel(puncSpec),
|
2012-06-27 09:17:28 +00:00
|
|
|
SuggestedWordInfo.MAX_SCORE, SuggestedWordInfo.KIND_HARDCODED,
|
|
|
|
Dictionary.TYPE_HARDCODED));
|
2012-02-01 09:14:32 +00:00
|
|
|
}
|
|
|
|
}
|
2012-03-14 06:59:04 +00:00
|
|
|
return new SuggestedWords(puncList,
|
2012-03-13 11:05:00 +00:00
|
|
|
false /* typedWordValid */,
|
2012-03-14 06:59:04 +00:00
|
|
|
false /* hasAutoCorrectionCandidate */,
|
2012-03-15 04:12:08 +00:00
|
|
|
true /* isPunctuationSuggestions */,
|
2012-05-14 05:42:40 +00:00
|
|
|
false /* isObsoleteSuggestions */,
|
|
|
|
false /* isPrediction */);
|
2012-02-01 09:14:32 +00:00
|
|
|
}
|
|
|
|
|
2012-02-22 02:54:44 +00:00
|
|
|
private static String createWordSeparators(final String weakSpaceStrippers,
|
|
|
|
final String weakSpaceSwappers, final String symbolsExcludedFromWordSeparators,
|
2011-12-09 09:19:30 +00:00
|
|
|
final Resources res) {
|
2012-02-22 02:54:44 +00:00
|
|
|
String wordSeparators = weakSpaceStrippers + weakSpaceSwappers
|
2012-03-06 05:00:34 +00:00
|
|
|
+ res.getString(R.string.phantom_space_promoting_symbols);
|
2011-12-09 09:19:30 +00:00
|
|
|
for (int i = symbolsExcludedFromWordSeparators.length() - 1; i >= 0; --i) {
|
|
|
|
wordSeparators = wordSeparators.replace(
|
|
|
|
symbolsExcludedFromWordSeparators.substring(i, i + 1), "");
|
|
|
|
}
|
|
|
|
return wordSeparators;
|
|
|
|
}
|
|
|
|
|
2012-06-08 12:26:25 +00:00
|
|
|
private int createSuggestionVisibility(final Resources res) {
|
|
|
|
final String suggestionVisiblityStr = mShowSuggestionsSetting;
|
|
|
|
for (int visibility : SUGGESTION_VISIBILITY_VALUE_ARRAY) {
|
|
|
|
if (suggestionVisiblityStr.equals(res.getString(visibility))) {
|
|
|
|
return visibility;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
throw new RuntimeException("Bug: visibility string is not configured correctly");
|
|
|
|
}
|
|
|
|
|
2011-12-09 09:54:07 +00:00
|
|
|
private static boolean isVibrateOn(final Context context, final SharedPreferences prefs,
|
|
|
|
final Resources res) {
|
2012-03-30 09:47:24 +00:00
|
|
|
final boolean hasVibrator = VibratorUtils.getInstance(context).hasVibrator();
|
2011-12-09 09:54:07 +00:00
|
|
|
return hasVibrator && prefs.getBoolean(Settings.PREF_VIBRATE_ON,
|
|
|
|
res.getBoolean(R.bool.config_default_vibration_enabled));
|
|
|
|
}
|
|
|
|
|
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));
|
|
|
|
}
|
|
|
|
|
2012-09-04 07:54:01 +00:00
|
|
|
public boolean isSymbolExcludedFromWordSeparators(final int code) {
|
2011-12-08 13:10:40 +00:00
|
|
|
return mSymbolsExcludedFromWordSeparators.contains(String.valueOf((char)code));
|
|
|
|
}
|
|
|
|
|
2012-10-23 02:30:39 +00:00
|
|
|
// TODO: use "Phantom" instead of "Weak" in this method name
|
2012-09-04 07:54:01 +00:00
|
|
|
public boolean isWeakSpaceStripper(final int code) {
|
2012-02-03 01:51:34 +00:00
|
|
|
// TODO: this does not work if the code does not fit in a char
|
2012-02-22 02:54:44 +00:00
|
|
|
return mWeakSpaceStrippers.contains(String.valueOf((char)code));
|
2011-12-08 13:10:40 +00:00
|
|
|
}
|
|
|
|
|
2012-10-23 02:30:39 +00:00
|
|
|
// TODO: use "Phantom" instead of "Weak" in this method name
|
2012-09-04 07:54:01 +00:00
|
|
|
public boolean isWeakSpaceSwapper(final int code) {
|
2012-02-03 01:51:34 +00:00
|
|
|
// TODO: this does not work if the code does not fit in a char
|
2012-02-22 02:54:44 +00:00
|
|
|
return mWeakSpaceSwappers.contains(String.valueOf((char)code));
|
2011-12-08 13:10:40 +00:00
|
|
|
}
|
|
|
|
|
2012-09-04 07:54:01 +00:00
|
|
|
public boolean isPhantomSpacePromotingSymbol(final int code) {
|
2012-03-06 05:00:34 +00:00
|
|
|
// TODO: this does not work if the code does not fit in a char
|
|
|
|
return mPhantomSpacePromotingSymbols.contains(String.valueOf((char)code));
|
|
|
|
}
|
|
|
|
|
2012-09-04 07:54:01 +00:00
|
|
|
private static boolean isAutoCorrectEnabled(final Resources res,
|
2011-12-15 10:32:11 +00:00
|
|
|
final String currentAutoCorrectionSetting) {
|
2012-09-04 07:54:01 +00:00
|
|
|
final String autoCorrectionOff = res.getString(
|
2011-12-08 13:10:40 +00:00
|
|
|
R.string.auto_correction_threshold_mode_index_off);
|
|
|
|
return !currentAutoCorrectionSetting.equals(autoCorrectionOff);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Public to access from KeyboardSwitcher. Should it have access to some
|
|
|
|
// process-global instance instead?
|
2012-09-04 07:54:01 +00:00
|
|
|
public static boolean isKeyPreviewPopupEnabled(final SharedPreferences prefs,
|
|
|
|
final Resources res) {
|
|
|
|
final boolean showPopupOption = res.getBoolean(
|
2011-12-08 13:10:40 +00:00
|
|
|
R.bool.config_enable_show_popup_on_keypress_option);
|
2012-09-04 07:54:01 +00:00
|
|
|
if (!showPopupOption) return res.getBoolean(R.bool.config_default_popup_preview);
|
|
|
|
return prefs.getBoolean(Settings.PREF_POPUP_ON,
|
|
|
|
res.getBoolean(R.bool.config_default_popup_preview));
|
2011-12-08 13:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Likewise
|
2012-09-04 07:54:01 +00:00
|
|
|
public static int getKeyPreviewPopupDismissDelay(final SharedPreferences prefs,
|
|
|
|
final Resources res) {
|
2011-12-09 11:16:57 +00:00
|
|
|
// TODO: use mKeyPreviewPopupDismissDelayRawValue instead of reading it again here.
|
2012-09-04 07:54:01 +00:00
|
|
|
return Integer.parseInt(prefs.getString(Settings.PREF_KEY_PREVIEW_POPUP_DISMISS_DELAY,
|
|
|
|
Integer.toString(res.getInteger(
|
2012-01-25 11:14:39 +00:00
|
|
|
R.integer.config_key_preview_linger_timeout))));
|
2011-12-08 13:10:40 +00:00
|
|
|
}
|
|
|
|
|
2012-09-04 07:54:01 +00:00
|
|
|
private static boolean isBigramPredictionEnabled(final SharedPreferences prefs,
|
|
|
|
final Resources res) {
|
|
|
|
return prefs.getBoolean(Settings.PREF_BIGRAM_PREDICTIONS, res.getBoolean(
|
2012-04-05 11:49:37 +00:00
|
|
|
R.bool.config_default_next_word_prediction));
|
2011-12-08 13:10:40 +00:00
|
|
|
}
|
|
|
|
|
2012-09-04 07:54:01 +00:00
|
|
|
private static float getAutoCorrectionThreshold(final Resources res,
|
2011-12-15 10:32:11 +00:00
|
|
|
final String currentAutoCorrectionSetting) {
|
2012-09-04 07:54:01 +00:00
|
|
|
final String[] autoCorrectionThresholdValues = res.getStringArray(
|
2011-12-08 13:10:40 +00:00
|
|
|
R.array.auto_correction_threshold_values);
|
|
|
|
// When autoCorrectionThreshold is greater than 1.0, it's like auto correction is off.
|
2012-05-16 11:42:12 +00:00
|
|
|
float autoCorrectionThreshold = Float.MAX_VALUE;
|
2011-12-08 13:10:40 +00:00
|
|
|
try {
|
|
|
|
final int arrayIndex = Integer.valueOf(currentAutoCorrectionSetting);
|
|
|
|
if (arrayIndex >= 0 && arrayIndex < autoCorrectionThresholdValues.length) {
|
2012-05-16 11:42:12 +00:00
|
|
|
autoCorrectionThreshold = Float.parseFloat(
|
2011-12-08 13:10:40 +00:00
|
|
|
autoCorrectionThresholdValues[arrayIndex]);
|
|
|
|
}
|
|
|
|
} catch (NumberFormatException e) {
|
|
|
|
// Whenever the threshold settings are correct, never come here.
|
2012-05-16 11:42:12 +00:00
|
|
|
autoCorrectionThreshold = Float.MAX_VALUE;
|
2011-12-08 13:10:40 +00:00
|
|
|
Log.w(TAG, "Cannot load auto correction threshold setting."
|
|
|
|
+ " currentAutoCorrectionSetting: " + currentAutoCorrectionSetting
|
|
|
|
+ ", autoCorrectionThresholdValues: "
|
|
|
|
+ Arrays.toString(autoCorrectionThresholdValues));
|
|
|
|
}
|
|
|
|
return autoCorrectionThreshold;
|
|
|
|
}
|
|
|
|
|
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-09-20 01:32:56 +00:00
|
|
|
// This preference key is deprecated. Use {@link #PREF_SHOW_LANGUAGE_SWITCH_KEY} instead.
|
|
|
|
// This is being used only for the backward compatibility.
|
|
|
|
private static final String PREF_SUPPRESS_LANGUAGE_SWITCH_KEY =
|
|
|
|
"pref_suppress_language_switch_key";
|
|
|
|
|
|
|
|
public static boolean showsLanguageSwitchKey(final SharedPreferences prefs) {
|
|
|
|
if (prefs.contains(PREF_SUPPRESS_LANGUAGE_SWITCH_KEY)) {
|
|
|
|
final boolean suppressLanguageSwitchKey = prefs.getBoolean(
|
|
|
|
PREF_SUPPRESS_LANGUAGE_SWITCH_KEY, false);
|
|
|
|
final SharedPreferences.Editor editor = prefs.edit();
|
|
|
|
editor.remove(PREF_SUPPRESS_LANGUAGE_SWITCH_KEY);
|
|
|
|
editor.putBoolean(Settings.PREF_SHOW_LANGUAGE_SWITCH_KEY, !suppressLanguageSwitchKey);
|
|
|
|
editor.apply();
|
|
|
|
}
|
|
|
|
return prefs.getBoolean(Settings.PREF_SHOW_LANGUAGE_SWITCH_KEY, true);
|
2012-02-18 01:46:01 +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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-20 01:32:56 +00:00
|
|
|
public static boolean isFullscreenModeAllowed(final Resources res) {
|
2012-01-16 02:32:49 +00:00
|
|
|
return res.getBoolean(R.bool.config_use_fullscreen_mode);
|
|
|
|
}
|
|
|
|
|
2012-04-18 13:13:29 +00:00
|
|
|
public InputMethodSubtype[] getAdditionalSubtypes() {
|
|
|
|
return mAdditionalSubtypes;
|
|
|
|
}
|
|
|
|
|
2012-04-19 07:39:25 +00:00
|
|
|
public static String getPrefAdditionalSubtypes(final SharedPreferences prefs,
|
2012-04-18 13:13:29 +00:00
|
|
|
final Resources res) {
|
2012-09-04 07:54:01 +00:00
|
|
|
final String predefinedPrefSubtypes = AdditionalSubtype.createPrefSubtypes(
|
|
|
|
res.getStringArray(R.array.predefined_subtypes));
|
|
|
|
return prefs.getString(Settings.PREF_CUSTOM_INPUT_STYLES, predefinedPrefSubtypes);
|
2012-04-11 09:21:10 +00:00
|
|
|
}
|
|
|
|
|
2011-12-08 13:21:26 +00:00
|
|
|
// Accessed from the settings interface, hence public
|
2012-09-04 07:54:01 +00:00
|
|
|
public static float getCurrentKeypressSoundVolume(final SharedPreferences prefs,
|
|
|
|
final Resources res) {
|
2011-12-09 11:26:28 +00:00
|
|
|
// TODO: use mVibrationDurationSettingsRawValue instead of reading it again here
|
2012-09-04 07:54:01 +00:00
|
|
|
final float volume = prefs.getFloat(Settings.PREF_KEYPRESS_SOUND_VOLUME, -1.0f);
|
2011-12-08 13:14:54 +00:00
|
|
|
if (volume >= 0) {
|
|
|
|
return volume;
|
|
|
|
}
|
|
|
|
|
2012-08-29 07:31:50 +00:00
|
|
|
return Float.parseFloat(ResourceUtils.getDeviceOverrideValue(
|
|
|
|
res, R.array.keypress_volumes, "-1.0f"));
|
2011-12-08 13:14:54 +00:00
|
|
|
}
|
|
|
|
|
2011-12-08 13:21:26 +00:00
|
|
|
// Likewise
|
2012-09-04 07:54:01 +00:00
|
|
|
public static int getCurrentVibrationDuration(final SharedPreferences prefs,
|
|
|
|
final Resources res) {
|
2011-12-09 11:26:28 +00:00
|
|
|
// TODO: use mKeypressVibrationDuration instead of reading it again here
|
2012-09-04 07:54:01 +00:00
|
|
|
final int ms = prefs.getInt(Settings.PREF_VIBRATION_DURATION_SETTINGS, -1);
|
2011-12-08 13:14:54 +00:00
|
|
|
if (ms >= 0) {
|
|
|
|
return ms;
|
|
|
|
}
|
2012-03-21 06:33:55 +00:00
|
|
|
|
2012-08-29 07:31:50 +00:00
|
|
|
return Integer.parseInt(ResourceUtils.getDeviceOverrideValue(
|
|
|
|
res, R.array.keypress_vibration_durations, "-1"));
|
2011-12-08 13:14:54 +00:00
|
|
|
}
|
2011-12-09 11:16:57 +00:00
|
|
|
|
|
|
|
// Likewise
|
2011-12-15 10:32:11 +00:00
|
|
|
public static boolean getUsabilityStudyMode(final SharedPreferences prefs) {
|
2011-12-09 11:26:28 +00:00
|
|
|
// TODO: use mUsabilityStudyMode instead of reading it again here
|
2012-09-21 06:09:47 +00:00
|
|
|
return prefs.getBoolean(DebugSettings.PREF_USABILITY_STUDY_MODE, true);
|
2011-12-09 11:16:57 +00:00
|
|
|
}
|
2012-05-18 12:28:09 +00:00
|
|
|
|
2012-09-04 07:54:01 +00:00
|
|
|
public static long getLastUserHistoryWriteTime(final SharedPreferences prefs,
|
|
|
|
final String locale) {
|
2012-05-18 12:28:09 +00:00
|
|
|
final String str = prefs.getString(Settings.PREF_LAST_USER_DICTIONARY_WRITE_TIME, "");
|
2012-08-29 07:23:42 +00:00
|
|
|
final HashMap<String, Long> map = LocaleUtils.localeAndTimeStrToHashMap(str);
|
2012-05-18 12:28:09 +00:00
|
|
|
if (map.containsKey(locale)) {
|
|
|
|
return map.get(locale);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-09-04 07:54:01 +00:00
|
|
|
public static void setLastUserHistoryWriteTime(final SharedPreferences prefs,
|
|
|
|
final String locale) {
|
2012-05-18 12:28:09 +00:00
|
|
|
final String oldStr = prefs.getString(Settings.PREF_LAST_USER_DICTIONARY_WRITE_TIME, "");
|
2012-08-29 07:23:42 +00:00
|
|
|
final HashMap<String, Long> map = LocaleUtils.localeAndTimeStrToHashMap(oldStr);
|
2012-05-18 12:28:09 +00:00
|
|
|
map.put(locale, System.currentTimeMillis());
|
2012-08-29 07:23:42 +00:00
|
|
|
final String newStr = LocaleUtils.localeAndTimeHashMapToStr(map);
|
2012-05-18 12:28:09 +00:00
|
|
|
prefs.edit().putString(Settings.PREF_LAST_USER_DICTIONARY_WRITE_TIME, newStr).apply();
|
|
|
|
}
|
2012-06-12 00:35:51 +00:00
|
|
|
|
2012-08-15 08:57:38 +00:00
|
|
|
public boolean isSameInputType(final EditorInfo editorInfo) {
|
|
|
|
return mInputAttributes.isSameInputType(editorInfo);
|
|
|
|
}
|
|
|
|
|
2012-06-12 00:35:51 +00:00
|
|
|
// For debug.
|
|
|
|
public String getInputAttributesDebugString() {
|
|
|
|
return mInputAttributes.toString();
|
|
|
|
}
|
2011-12-08 13:14:54 +00:00
|
|
|
}
|