2009-03-13 22:11:42 +00:00
|
|
|
/*
|
2010-03-26 22:07:10 +00:00
|
|
|
* Copyright (C) 2008 The Android Open Source Project
|
|
|
|
*
|
2009-03-13 22:11:42 +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
|
2010-01-28 18:09:44 +00:00
|
|
|
*
|
2009-03-13 22:11:42 +00:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2010-01-28 18:09:44 +00:00
|
|
|
*
|
2009-03-13 22:11:42 +00:00
|
|
|
* 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;
|
|
|
|
|
2010-11-29 08:57:48 +00:00
|
|
|
import com.android.inputmethod.voice.VoiceIMEConnector;
|
|
|
|
import com.android.inputmethod.voice.VoiceInputLogger;
|
2010-02-09 22:17:30 +00:00
|
|
|
|
2010-01-16 20:21:23 +00:00
|
|
|
import android.app.AlertDialog;
|
|
|
|
import android.app.Dialog;
|
2010-03-05 23:49:16 +00:00
|
|
|
import android.app.backup.BackupManager;
|
2010-01-16 20:21:23 +00:00
|
|
|
import android.content.DialogInterface;
|
2011-01-14 05:02:46 +00:00
|
|
|
import android.content.Intent;
|
2009-07-05 20:17:13 +00:00
|
|
|
import android.content.SharedPreferences;
|
2009-03-13 22:11:42 +00:00
|
|
|
import android.os.Bundle;
|
2010-11-11 09:15:41 +00:00
|
|
|
import android.os.Vibrator;
|
2009-03-26 00:39:38 +00:00
|
|
|
import android.preference.CheckBoxPreference;
|
2010-02-09 22:17:30 +00:00
|
|
|
import android.preference.ListPreference;
|
2011-01-14 05:02:46 +00:00
|
|
|
import android.preference.Preference;
|
|
|
|
import android.preference.Preference.OnPreferenceClickListener;
|
2009-03-13 22:11:42 +00:00
|
|
|
import android.preference.PreferenceActivity;
|
|
|
|
import android.preference.PreferenceGroup;
|
2011-01-14 05:02:46 +00:00
|
|
|
import android.preference.PreferenceScreen;
|
2010-03-30 17:05:53 +00:00
|
|
|
import android.speech.SpeechRecognizer;
|
2009-03-26 00:39:38 +00:00
|
|
|
import android.text.AutoText;
|
2010-11-30 14:35:56 +00:00
|
|
|
import android.text.TextUtils;
|
|
|
|
import android.text.method.LinkMovementMethod;
|
2010-01-16 20:21:23 +00:00
|
|
|
import android.util.Log;
|
2010-11-30 14:35:56 +00:00
|
|
|
import android.widget.TextView;
|
2010-01-16 20:21:23 +00:00
|
|
|
|
2010-11-29 08:57:48 +00:00
|
|
|
import java.util.Locale;
|
2009-03-13 22:11:42 +00:00
|
|
|
|
2010-12-09 12:06:26 +00:00
|
|
|
public class Settings extends PreferenceActivity
|
2010-01-16 20:21:23 +00:00
|
|
|
implements SharedPreferences.OnSharedPreferenceChangeListener,
|
2011-01-14 05:02:46 +00:00
|
|
|
DialogInterface.OnDismissListener, OnPreferenceClickListener {
|
2010-12-09 12:06:26 +00:00
|
|
|
private static final String TAG = "Settings";
|
2009-07-05 20:17:13 +00:00
|
|
|
|
2010-12-09 12:06:26 +00:00
|
|
|
public static final String PREF_VIBRATE_ON = "vibrate_on";
|
|
|
|
public static final String PREF_SOUND_ON = "sound_on";
|
|
|
|
public static final String PREF_POPUP_ON = "popup_on";
|
|
|
|
public static final String PREF_RECORRECTION_ENABLED = "recorrection_enabled";
|
|
|
|
public static final String PREF_AUTO_CAP = "auto_cap";
|
2010-12-02 11:54:32 +00:00
|
|
|
public static final String PREF_SETTINGS_KEY = "settings_key";
|
2010-12-09 12:06:26 +00:00
|
|
|
public static final String PREF_VOICE_SETTINGS_KEY = "voice_mode";
|
|
|
|
public static final String PREF_INPUT_LANGUAGE = "input_language";
|
|
|
|
public static final String PREF_SELECTED_LANGUAGES = "selected_languages";
|
2010-12-13 03:06:57 +00:00
|
|
|
public static final String PREF_SUBTYPES = "subtype_settings";
|
2010-01-28 18:09:44 +00:00
|
|
|
|
2010-12-09 12:06:26 +00:00
|
|
|
public static final String PREF_PREDICTION_SETTINGS_KEY = "prediction_settings";
|
|
|
|
public static final String PREF_QUICK_FIXES = "quick_fixes";
|
|
|
|
public static final String PREF_SHOW_SUGGESTIONS_SETTING = "show_suggestions_setting";
|
2010-12-11 08:06:24 +00:00
|
|
|
public static final String PREF_AUTO_CORRECTION_THRESHOLD = "auto_correction_threshold";
|
2010-12-09 12:06:26 +00:00
|
|
|
public static final String PREF_BIGRAM_SUGGESTIONS = "bigram_suggestion";
|
2010-01-28 18:09:44 +00:00
|
|
|
|
2010-01-16 20:21:23 +00:00
|
|
|
// Dialog ids
|
|
|
|
private static final int VOICE_INPUT_CONFIRM_DIALOG = 0;
|
2010-01-28 18:09:44 +00:00
|
|
|
|
2011-01-14 05:02:46 +00:00
|
|
|
private PreferenceScreen mInputLanguageSelection;
|
2009-03-26 00:39:38 +00:00
|
|
|
private CheckBoxPreference mQuickFixes;
|
2010-02-09 22:17:30 +00:00
|
|
|
private ListPreference mVoicePreference;
|
2010-09-15 04:37:52 +00:00
|
|
|
private ListPreference mSettingsKeyPreference;
|
2010-12-11 08:06:24 +00:00
|
|
|
private ListPreference mAutoCorrectionThreshold;
|
2010-09-28 03:23:26 +00:00
|
|
|
private CheckBoxPreference mBigramSuggestion;
|
2010-02-09 22:17:30 +00:00
|
|
|
private boolean mVoiceOn;
|
2010-01-28 18:09:44 +00:00
|
|
|
|
2010-11-30 14:35:56 +00:00
|
|
|
private AlertDialog mDialog;
|
|
|
|
|
2010-01-16 20:21:23 +00:00
|
|
|
private VoiceInputLogger mLogger;
|
2010-01-28 18:09:44 +00:00
|
|
|
|
2010-01-16 20:21:23 +00:00
|
|
|
private boolean mOkClicked = false;
|
2010-02-09 22:17:30 +00:00
|
|
|
private String mVoiceModeOff;
|
2010-01-28 18:09:44 +00:00
|
|
|
|
2010-12-11 08:06:24 +00:00
|
|
|
private void ensureConsistencyOfAutoCorrectionSettings() {
|
|
|
|
final String autoCorrectionOff = getResources().getString(
|
2010-12-13 03:37:23 +00:00
|
|
|
R.string.auto_correction_threshold_mode_index_off);
|
2010-12-11 08:06:24 +00:00
|
|
|
final String currentSetting = mAutoCorrectionThreshold.getValue();
|
|
|
|
mBigramSuggestion.setEnabled(!currentSetting.equals(autoCorrectionOff));
|
2010-09-28 03:23:26 +00:00
|
|
|
}
|
2011-01-14 05:02:46 +00:00
|
|
|
|
2009-03-13 22:11:42 +00:00
|
|
|
@Override
|
|
|
|
protected void onCreate(Bundle icicle) {
|
|
|
|
super.onCreate(icicle);
|
|
|
|
addPreferencesFromResource(R.xml.prefs);
|
2011-01-14 05:02:46 +00:00
|
|
|
mInputLanguageSelection = (PreferenceScreen) findPreference(PREF_SUBTYPES);
|
|
|
|
mInputLanguageSelection.setOnPreferenceClickListener(this);
|
2010-12-09 12:06:26 +00:00
|
|
|
mQuickFixes = (CheckBoxPreference) findPreference(PREF_QUICK_FIXES);
|
|
|
|
mVoicePreference = (ListPreference) findPreference(PREF_VOICE_SETTINGS_KEY);
|
2010-09-15 04:37:52 +00:00
|
|
|
mSettingsKeyPreference = (ListPreference) findPreference(PREF_SETTINGS_KEY);
|
2010-01-16 20:21:23 +00:00
|
|
|
SharedPreferences prefs = getPreferenceManager().getSharedPreferences();
|
|
|
|
prefs.registerOnSharedPreferenceChangeListener(this);
|
2010-01-28 18:09:44 +00:00
|
|
|
|
2010-02-09 22:17:30 +00:00
|
|
|
mVoiceModeOff = getString(R.string.voice_mode_off);
|
2010-12-09 12:06:26 +00:00
|
|
|
mVoiceOn = !(prefs.getString(PREF_VOICE_SETTINGS_KEY, mVoiceModeOff)
|
|
|
|
.equals(mVoiceModeOff));
|
2010-01-16 20:21:23 +00:00
|
|
|
mLogger = VoiceInputLogger.getLogger(this);
|
2010-09-28 03:23:26 +00:00
|
|
|
|
2010-12-11 08:06:24 +00:00
|
|
|
mAutoCorrectionThreshold = (ListPreference) findPreference(PREF_AUTO_CORRECTION_THRESHOLD);
|
2010-09-28 03:23:26 +00:00
|
|
|
mBigramSuggestion = (CheckBoxPreference) findPreference(PREF_BIGRAM_SUGGESTIONS);
|
2010-12-11 08:06:24 +00:00
|
|
|
ensureConsistencyOfAutoCorrectionSettings();
|
2010-10-22 05:28:12 +00:00
|
|
|
|
|
|
|
final boolean showSettingsKeyOption = getResources().getBoolean(
|
|
|
|
R.bool.config_enable_show_settings_key_option);
|
2010-11-30 14:35:56 +00:00
|
|
|
if (!showSettingsKeyOption) {
|
2010-10-22 05:28:12 +00:00
|
|
|
getPreferenceScreen().removePreference(mSettingsKeyPreference);
|
2010-11-30 14:35:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
final boolean showVoiceKeyOption = getResources().getBoolean(
|
|
|
|
R.bool.config_enable_show_voice_key_option);
|
|
|
|
if (!showVoiceKeyOption) {
|
|
|
|
getPreferenceScreen().removePreference(mVoicePreference);
|
|
|
|
}
|
2010-11-11 09:15:41 +00:00
|
|
|
|
|
|
|
Vibrator vibrator = (Vibrator) getSystemService(VIBRATOR_SERVICE);
|
|
|
|
if (vibrator == null || !vibrator.hasVibrator()) {
|
|
|
|
getPreferenceScreen().removePreference(
|
|
|
|
getPreferenceScreen().findPreference(PREF_VIBRATE_ON));
|
|
|
|
}
|
2010-12-13 03:06:57 +00:00
|
|
|
|
|
|
|
final boolean showSubtypeSettings = getResources().getBoolean(
|
|
|
|
R.bool.config_enable_show_subtype_settings);
|
|
|
|
if (!showSubtypeSettings) {
|
|
|
|
getPreferenceScreen().removePreference(findPreference(PREF_SUBTYPES));
|
|
|
|
}
|
2011-01-18 06:20:35 +00:00
|
|
|
|
|
|
|
final boolean showPopupOption = getResources().getBoolean(
|
|
|
|
R.bool.config_enable_show_popup_on_keypress_option);
|
|
|
|
if (!showPopupOption) {
|
|
|
|
getPreferenceScreen().removePreference(findPreference(PREF_POPUP_ON));
|
|
|
|
}
|
2011-01-18 08:45:22 +00:00
|
|
|
|
|
|
|
final boolean showRecorrectionOption = getResources().getBoolean(
|
|
|
|
R.bool.config_enable_show_recorrection_option);
|
|
|
|
if (!showRecorrectionOption) {
|
|
|
|
getPreferenceScreen().removePreference(findPreference(PREF_RECORRECTION_ENABLED));
|
|
|
|
}
|
2009-03-13 22:11:42 +00:00
|
|
|
}
|
|
|
|
|
2009-03-26 00:39:38 +00:00
|
|
|
@Override
|
|
|
|
protected void onResume() {
|
|
|
|
super.onResume();
|
|
|
|
int autoTextSize = AutoText.getSize(getListView());
|
|
|
|
if (autoTextSize < 1) {
|
2010-12-09 12:06:26 +00:00
|
|
|
((PreferenceGroup) findPreference(PREF_PREDICTION_SETTINGS_KEY))
|
2010-01-16 20:21:23 +00:00
|
|
|
.removePreference(mQuickFixes);
|
2009-03-13 22:11:42 +00:00
|
|
|
}
|
2010-11-21 01:36:37 +00:00
|
|
|
if (!VoiceIMEConnector.VOICE_INSTALLED
|
2010-03-30 17:05:53 +00:00
|
|
|
|| !SpeechRecognizer.isRecognitionAvailable(this)) {
|
2010-01-16 20:21:23 +00:00
|
|
|
getPreferenceScreen().removePreference(mVoicePreference);
|
2010-02-09 22:17:30 +00:00
|
|
|
} else {
|
|
|
|
updateVoiceModeSummary();
|
2010-01-16 20:21:23 +00:00
|
|
|
}
|
2010-09-15 04:37:52 +00:00
|
|
|
updateSettingsKeySummary();
|
2009-03-13 22:11:42 +00:00
|
|
|
}
|
2009-07-05 20:17:13 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onDestroy() {
|
|
|
|
getPreferenceManager().getSharedPreferences().unregisterOnSharedPreferenceChangeListener(
|
|
|
|
this);
|
|
|
|
super.onDestroy();
|
|
|
|
}
|
|
|
|
|
2010-12-02 09:46:21 +00:00
|
|
|
@Override
|
2010-02-09 22:17:30 +00:00
|
|
|
public void onSharedPreferenceChanged(SharedPreferences prefs, String key) {
|
2009-07-05 20:17:13 +00:00
|
|
|
(new BackupManager(this)).dataChanged();
|
2010-02-09 22:17:30 +00:00
|
|
|
// If turning on voice input, show dialog
|
2010-12-09 12:06:26 +00:00
|
|
|
if (key.equals(PREF_VOICE_SETTINGS_KEY) && !mVoiceOn) {
|
|
|
|
if (!prefs.getString(PREF_VOICE_SETTINGS_KEY, mVoiceModeOff)
|
2010-02-09 22:17:30 +00:00
|
|
|
.equals(mVoiceModeOff)) {
|
|
|
|
showVoiceConfirmation();
|
2010-01-16 20:21:23 +00:00
|
|
|
}
|
|
|
|
}
|
2010-12-11 08:06:24 +00:00
|
|
|
ensureConsistencyOfAutoCorrectionSettings();
|
2010-12-09 12:06:26 +00:00
|
|
|
mVoiceOn = !(prefs.getString(PREF_VOICE_SETTINGS_KEY, mVoiceModeOff)
|
|
|
|
.equals(mVoiceModeOff));
|
2010-02-09 22:17:30 +00:00
|
|
|
updateVoiceModeSummary();
|
2010-09-15 04:37:52 +00:00
|
|
|
updateSettingsKeySummary();
|
|
|
|
}
|
|
|
|
|
2011-01-14 05:02:46 +00:00
|
|
|
@Override
|
|
|
|
public boolean onPreferenceClick(Preference pref) {
|
|
|
|
if (pref == mInputLanguageSelection) {
|
|
|
|
final String action;
|
2011-01-14 05:46:55 +00:00
|
|
|
if (android.os.Build.VERSION.SDK_INT
|
2011-01-14 13:24:10 +00:00
|
|
|
>= /* android.os.Build.VERSION_CODES.HONEYCOMB */ 11) {
|
2011-01-14 05:02:46 +00:00
|
|
|
action = "android.settings.INPUT_METHOD_AND_SUBTYPE_ENABLER";
|
|
|
|
} else {
|
|
|
|
action = "com.android.inputmethod.latin.INPUT_LANGUAGE_SELECTION";
|
|
|
|
}
|
|
|
|
startActivity(new Intent(action));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-09-15 04:37:52 +00:00
|
|
|
private void updateSettingsKeySummary() {
|
|
|
|
mSettingsKeyPreference.setSummary(
|
|
|
|
getResources().getStringArray(R.array.settings_key_modes)
|
|
|
|
[mSettingsKeyPreference.findIndexOfValue(mSettingsKeyPreference.getValue())]);
|
2010-02-09 22:17:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private void showVoiceConfirmation() {
|
|
|
|
mOkClicked = false;
|
|
|
|
showDialog(VOICE_INPUT_CONFIRM_DIALOG);
|
2010-11-30 14:35:56 +00:00
|
|
|
// Make URL in the dialog message clickable
|
|
|
|
if (mDialog != null) {
|
|
|
|
TextView textView = (TextView) mDialog.findViewById(android.R.id.message);
|
|
|
|
if (textView != null) {
|
|
|
|
textView.setMovementMethod(LinkMovementMethod.getInstance());
|
|
|
|
}
|
|
|
|
}
|
2010-02-09 22:17:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private void updateVoiceModeSummary() {
|
|
|
|
mVoicePreference.setSummary(
|
|
|
|
getResources().getStringArray(R.array.voice_input_modes_summary)
|
|
|
|
[mVoicePreference.findIndexOfValue(mVoicePreference.getValue())]);
|
2010-01-16 20:21:23 +00:00
|
|
|
}
|
2010-01-28 18:09:44 +00:00
|
|
|
|
2010-01-16 20:21:23 +00:00
|
|
|
@Override
|
|
|
|
protected Dialog onCreateDialog(int id) {
|
|
|
|
switch (id) {
|
|
|
|
case VOICE_INPUT_CONFIRM_DIALOG:
|
|
|
|
DialogInterface.OnClickListener listener = new DialogInterface.OnClickListener() {
|
2010-12-02 09:46:21 +00:00
|
|
|
@Override
|
2010-01-16 20:21:23 +00:00
|
|
|
public void onClick(DialogInterface dialog, int whichButton) {
|
|
|
|
if (whichButton == DialogInterface.BUTTON_NEGATIVE) {
|
2010-02-09 22:17:30 +00:00
|
|
|
mVoicePreference.setValue(mVoiceModeOff);
|
2010-01-16 20:21:23 +00:00
|
|
|
mLogger.settingsWarningDialogCancel();
|
|
|
|
} else if (whichButton == DialogInterface.BUTTON_POSITIVE) {
|
|
|
|
mOkClicked = true;
|
|
|
|
mLogger.settingsWarningDialogOk();
|
|
|
|
}
|
|
|
|
updateVoicePreference();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(this)
|
|
|
|
.setTitle(R.string.voice_warning_title)
|
|
|
|
.setPositiveButton(android.R.string.ok, listener)
|
|
|
|
.setNegativeButton(android.R.string.cancel, listener);
|
2010-01-28 18:09:44 +00:00
|
|
|
|
2010-01-16 20:21:23 +00:00
|
|
|
// Get the current list of supported locales and check the current locale against
|
|
|
|
// that list, to decide whether to put a warning that voice input will not work in
|
|
|
|
// the current language as part of the pop-up confirmation dialog.
|
2010-11-17 07:35:35 +00:00
|
|
|
boolean localeSupported = SubtypeSwitcher.getInstance().isVoiceSupported(
|
2010-01-16 20:21:23 +00:00
|
|
|
Locale.getDefault().toString());
|
|
|
|
|
2010-11-30 14:35:56 +00:00
|
|
|
final CharSequence message;
|
2010-01-16 20:21:23 +00:00
|
|
|
if (localeSupported) {
|
2010-11-30 14:35:56 +00:00
|
|
|
message = TextUtils.concat(
|
|
|
|
getText(R.string.voice_warning_may_not_understand), "\n\n",
|
|
|
|
getText(R.string.voice_hint_dialog_message));
|
2010-01-16 20:21:23 +00:00
|
|
|
} else {
|
2010-11-30 14:35:56 +00:00
|
|
|
message = TextUtils.concat(
|
|
|
|
getText(R.string.voice_warning_locale_not_supported), "\n\n",
|
|
|
|
getText(R.string.voice_warning_may_not_understand), "\n\n",
|
|
|
|
getText(R.string.voice_hint_dialog_message));
|
2010-01-16 20:21:23 +00:00
|
|
|
}
|
2010-11-30 14:35:56 +00:00
|
|
|
builder.setMessage(message);
|
2010-01-16 20:21:23 +00:00
|
|
|
AlertDialog dialog = builder.create();
|
2010-11-30 14:35:56 +00:00
|
|
|
mDialog = dialog;
|
2010-01-16 20:21:23 +00:00
|
|
|
dialog.setOnDismissListener(this);
|
|
|
|
mLogger.settingsWarningDialogShown();
|
|
|
|
return dialog;
|
|
|
|
default:
|
|
|
|
Log.e(TAG, "unknown dialog " + id);
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
2010-01-28 18:09:44 +00:00
|
|
|
|
2010-12-02 09:46:21 +00:00
|
|
|
@Override
|
2010-01-16 20:21:23 +00:00
|
|
|
public void onDismiss(DialogInterface dialog) {
|
|
|
|
mLogger.settingsWarningDialogDismissed();
|
|
|
|
if (!mOkClicked) {
|
|
|
|
// This assumes that onPreferenceClick gets called first, and this if the user
|
|
|
|
// agreed after the warning, we set the mOkClicked value to true.
|
2010-02-09 22:17:30 +00:00
|
|
|
mVoicePreference.setValue(mVoiceModeOff);
|
2010-01-16 20:21:23 +00:00
|
|
|
}
|
|
|
|
}
|
2010-01-28 18:09:44 +00:00
|
|
|
|
2010-01-16 20:21:23 +00:00
|
|
|
private void updateVoicePreference() {
|
2010-02-09 22:17:30 +00:00
|
|
|
boolean isChecked = !mVoicePreference.getValue().equals(mVoiceModeOff);
|
2010-01-16 20:21:23 +00:00
|
|
|
if (isChecked) {
|
|
|
|
mLogger.voiceInputSettingEnabled();
|
|
|
|
} else {
|
|
|
|
mLogger.voiceInputSettingDisabled();
|
|
|
|
}
|
|
|
|
}
|
2009-03-13 22:11:42 +00:00
|
|
|
}
|