summaryrefslogtreecommitdiffstats
path: root/src/com/android/settings/inputmethod
diff options
context:
space:
mode:
authorXiyuan Xia <xiyuan@google.com>2015-06-02 14:55:32 -0700
committerXiyuan Xia <xiyuan@google.com>2015-06-10 08:43:28 -0700
commit86a554091d0705f2152fcf1d78ca1c7720d9842c (patch)
treee168fef6ad80da3a545c80101935d68198e438f1 /src/com/android/settings/inputmethod
parent275e6f75208c08eb925048a330ed4aab96e51033 (diff)
downloadpackages_apps_Settings-86a554091d0705f2152fcf1d78ca1c7720d9842c.zip
packages_apps_Settings-86a554091d0705f2152fcf1d78ca1c7720d9842c.tar.gz
packages_apps_Settings-86a554091d0705f2152fcf1d78ca1c7720d9842c.tar.bz2
Implement default assist app setting
- Add "None" support to AppListPreference - Add DefaultAssistPreference to manage assist; - Add AppListPreferenceWithSettings to show a settings icon; - Implement DefaultAssistPreference based on AppListPreferenceWithSettings; - Move voice input settings into ManageAssist and implement it based on AppListPreferenceWithSettings; Bug:20210110 Change-Id: If283b8b55a46b428ecfa6e45dc2123292b1d4302
Diffstat (limited to 'src/com/android/settings/inputmethod')
-rw-r--r--src/com/android/settings/inputmethod/InputMethodAndLanguageSettings.java8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/com/android/settings/inputmethod/InputMethodAndLanguageSettings.java b/src/com/android/settings/inputmethod/InputMethodAndLanguageSettings.java
index 8f23ce9..93ece66 100644
--- a/src/com/android/settings/inputmethod/InputMethodAndLanguageSettings.java
+++ b/src/com/android/settings/inputmethod/InputMethodAndLanguageSettings.java
@@ -790,14 +790,6 @@ public class InputMethodAndLanguageSettings extends SettingsPreferenceFragment
indexables.add(indexable);
}
- // Voice input
- indexable = new SearchIndexableRaw(context);
- indexable.key = "voice_input_settings";
- indexable.title = context.getString(R.string.voice_input_settings);
- indexable.screenTitle = screenTitle;
- indexable.keywords = context.getString(R.string.keywords_voice_input);
- indexables.add(indexable);
-
// Text-to-speech.
TtsEngines ttsEngines = new TtsEngines(context);
if (!ttsEngines.getEngines().isEmpty()) {