aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/android/inputmethod/latin/Suggest.java (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Don't let the native code target be included twice when unbundling.Amith Yamasani2010-03-091-378/+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
* Fix Auto-complete toggle - was broken in a recent change.Amith Yamasani2010-02-191-1/+2
| | | | Also allow decoupling Quick Fixes from Suggestions and auto-complete.
* Don't apply autotext to the wrong input language.Amith Yamasani2010-02-181-21/+29
| | | | | | | Since autotext is tied to the display language, if the input lang is different from the display lang, don't apply autotext. Bug: 2417495
* Increase target size of preferred letters while typing.Amith Yamasani2010-02-081-4/+15
| | | | | | | | | | This increases the chance of hitting the correct letter when typing a word that exists in the dictionary, rather than only correct it after the fact. It is most effective after 2 or 3 letters of a word have been typed and gets more accurate with more typed letters in the word. If 2 adjacent letters have similar probabilities of occuring, then there is no hit correction applied.
* Fix for #2373295 : Capitalize suggestions when typing a capitalized word.Amith Yamasani2010-01-251-1/+12
| | | | | | When the user starts typing a word with a capital, whether automatically due to sentence beginning or since the user pressed shift, then all suggestions presented are capitalized as well, to be more WYSIWYG.
* Enable auto-correction only if there is a significant size main dictionary.Amith Yamasani2009-12-181-5/+7
| | | | | | Added e-umlaut popup for Russian keyboard. Added a French Canadian string resource but wont help until we add fr_CA to the supported locales list.
* Input language switching. Bug: 2331173Amith Yamasani2009-12-161-0/+6
| | | | | | | | | | | | New feature to enable fast switching between input languages for multilingual users. Keyboard settings lets you select a bunch of languages to switch between from the Latin IME. Use the Globe icon to toggle between languages. Needs more work and some layout changes in specialized keyboards. Also added a Russian keyboard (needs some pixel TLC at the right edge).
* Remove dupes from suggestions. Fixes 2213629Amith Yamasani2009-10-281-3/+31
| | | | | Dupes are sometimes generated, especially for names, from Contacts and main dictionary. Check for dupes before showing suggestions.
* Check for missing characters in User/Contacts dictionary as well.Amith Yamasani2009-08-131-9/+19
| | | | Also accomodate for missing characters when doing diffs between words.
* Have the Latin IME also use the names of your contacts as suggestions.Eric Fischer2009-08-131-5/+21
| | | | Bug 1597304
* Auto add new words to the user dictionary.Amith Yamasani2009-08-131-7/+14
| | | | | | | | | | First pass at automatically adding new words that the user types and deliberately accepts. After typing the word 4 times, the word gets promoted to being valid. After typing the word 7 times, the word gets added into the UserDictionary and can be removed from the UserDictionary Settings UI. Also add a second row of symbols to the period popup.
* auto import from //branches/cupcake/...@138744The Android Open Source Project2009-03-131-0/+278