summaryrefslogtreecommitdiffstats
path: root/src/com/android/settings/VoiceInputOutputSettings.java
Commit message (Collapse)AuthorAgeFilesLines
* Implement default assist app settingXiyuan Xia2015-06-101-15/+1
| | | | | | | | | | | | - 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
* Unify voice interactor and recognizer settings.Dianne Hackborn2014-07-211-330/+11
| | | | | | | | | | | There is now one settings UI to select both the new voice interactor and old voice recognizer. There are still a few wonky things about this that won't be resolved until we start requiring that all interactors specify an associated recognizer service. Change-Id: Ib702ff717fb28bcb244cb30e49577066ddc9f197
* New preference for selecting new voice interaction service.Dianne Hackborn2014-04-281-17/+167
| | | | | | | | This is currently in addition to the existing Voice Search preference in this UI. Eventually it will replace that one, as a superset of its functionality. Change-Id: I26f1220fa129870cad3ec4152a569a9c494971fb
* Show more settings and add restrictions/dialogs for secondary usersAmith Yamasani2012-09-231-0/+2
| | | | | | | | | | Bug: 7213029 crash in About>Status Bug: 7212495 hide System updates for second user Bug: 7212230 nickname editor should select the text Bug: 7160487 TTS settings Bug: 7129411 Settings needs visibility changes for secondary users Change-Id: Ia2d1229c08b392edfa6b671fce4a382410405b14
* Don't hide TTS settings if no recognizer is found.Narayan Kamath2011-10-051-14/+50
| | | | | bug:5412210 Change-Id: I6fdfda7f5f7bcd22acda2fd2b55e0d76f0fab1cd
* Update settings wording for ICSJean Chalard2011-09-011-8/+8
| | | | | Bug: 5069983 Change-Id: I882aded067e8cc75197f6d3fa5c11388368b6996
* Move Voice input/output settings to Language & keyboardAmith Yamasani2010-12-101-45/+37
| | | | | Bug: 3267042 Change-Id: I127a2e9d11fb70283812e68979bdde3976e32cf9
* Refactor settings top level activities to use fragments.Amith Yamasani2010-08-181-3/+2
| | | | | | | | | | | | | Added a base class SettingsPreferenceFragment from which the settings activities should be derived so that they can behave like fragments. It contains some commonly called utility methods and dialog conversion to DialogFragment. Some of the top-level activities can be launched directly without the left pane. Settings.java acts as a proxy activity that contains just that settings fragment without the left pane. There are still a lot of second and third level activities that need to be fragmentized. This is just the first pass to test the 2-pane layout.
* Fix to use application's resources when parsing its XML.Dianne Hackborn2010-03-041-1/+8
|
* Use flattenToShortString for voice recognizer setting, so as to match what's ↵Mike LeBeau2010-02-231-2/+3
| | | | | | done in RecognitionManagerService. Fixes http://b/2463844
* Make the one-recognizer case actually work. :) The settings item wasn'tMike LeBeau2010-02-121-1/+14
| | | | | | | | | | actually getting linked to the recognizer's settings in that case. Also add a summary line to the line for choosing the recognizer, so you can see which one is currently selected, in the case that more than one is installed. Fix the TTS settings strings to match what we do for voice input.
* Dynamically populate a list of available recognition services in voice settings,Mike LeBeau2010-02-121-22/+159
| | | | | | only showing the option to choose if there is more than one to choose from. Use the new settingsActivity meta-data to target the appropriate settings activity for the chosen recognizer.
* Add a new "Voice input & output" top-level section of system settings.Mike LeBeau2010-01-251-0/+70
This replaces the existing "Text-to-speech" section, placing that inside, along with a link to the newly exposed voice search settings (which will soon be expanded) and a link to the LatinIME settings (pending a link to a new section in LatinIME for just voice settings, including the comma setting and a new input language setting). The VoiceSearch and LatinIME links are smart enough to remove themselves if those don't exist on the device.