aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/android/inputmethod/latin/LanguageSwitcher.java (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Don't let the native code target be included twice when unbundling.Amith Yamasani2010-03-091-182/+0
| | | | | | | Move java code to a different directory so that the unbundled version doesn't try to compile the native code again. Change-Id: I05cf9e643824ddc448821f69805ccb0240c5b986
* Save and restore Auto Dictionary data.Amith Yamasani2010-02-241-2/+4
| | | | | | | | | | | | | | | | | | | Due to the addition of input language switching, the auto dictionary will be re-created very frequently. We need to save it and restore it during transitions, otherwise the data will be purged too often to be of much use in the multi-lingual case. This also fixes the case where a user frequently turns the phone off/on. Auto dictionary data was not being saved in those situations either. The dictionary will probably never grow too large since most of the frequently used words will be moved to the user dictionary any way. Also, now the input locale is different from the display locale, so save the input locale in the UserDictionary class and insert words into the user dictionary with the correct locale. And NPE fix for bug: 2464573
* Use title-case for language name on spacebar, even for the abbrev.Amith Yamasani2010-02-051-0/+8
| | | | And fix a bug in opening keyboard settings when Voice is not available.
* Add additional language information to FieldContext used for voice input.Mike LeBeau2010-02-041-0/+7
| | | | | This will allow us to choose the right voice input language for the user on the VoiceSearch side.
* Language switching with slide gesture on spacebar. Bug: 2331173Amith Yamasani2010-02-011-0/+165
Shows the language on the spacebar and in the preview bubble. Allows dragging of the spacebar from side to side to switch to previous or next languages.