aboutsummaryrefslogtreecommitdiffstats
path: root/java (follow)
Commit message (Collapse)AuthorAgeFilesLines
* The back button key event is delivered correctlyTadashi G. Takaoka2011-09-202-16/+29
| | | | | Bug: 5275063 Change-Id: I439ce18665e40dc8b2e40e923e5cabfcae7c81cf
* Update the theme pref key.Ken Wakasa2011-09-162-4/+3
| | | | | | Follow up to Ia139813b Change-Id: Ic4c2ea63041af02119dc404e704a04608d041163
* Merge "Use the correct theme on ICS"Ken Wakasa2011-09-161-1/+2
|\
| * Use the correct theme on ICSKen Wakasa2011-09-161-1/+2
| | | | | | | | | | bug: 5329939 Change-Id: Ia139813b83eefe53863cae9cbe46b8b3a940e0df
* | Merge "Draw more suggestions hint using text font"Tadashi G. Takaoka2011-09-1612-4/+29
|\ \
| * | Draw more suggestions hint using text fontTadashi G. Takaoka2011-09-1612-4/+29
| | | | | | | | | | | | | | | Bug: 5287964 Change-Id: I692b5303268c7b5115853177c956e147312c582d
* | | Merge "Add missing "action" key background definition"Tadashi G. Takaoka2011-09-162-2/+16
|\ \ \ | |_|/ |/| |
| * | Add missing "action" key background definitionTadashi G. Takaoka2011-09-162-2/+16
| |/ | | | | | | Change-Id: I11e7ad1ebcc2621c528a38fc82acf05011ca5d8b
* / Stop auto-switching-back to the main layout by quotes.Ken Wakasa2011-09-162-20/+24
|/ | | | | bug: 5314117 Change-Id: Idcd6a146665b93eabdc03875b98988f9fa049791
* Fix checking capitalized word codeTadashi G. Takaoka2011-09-161-1/+1
| | | | | | | This is a follow up change of If6c0edef. Bug: 5328922 Change-Id: Idb415f53f3fea6660c7802577d08b4d89d4e7842
* Remove Key.isStick, use backgroundType="stick" insteadTadashi G. Takaoka2011-09-157-72/+65
| | | | Change-Id: I50e88c0870a3fe360b81f19163ca2f64ec38d8e8
* Merge "Remove functionalKeyStyle, use backgroundType="functional" instead"Tadashi G. Takaoka2011-09-155-55/+43
|\
| * Remove functionalKeyStyle, use backgroundType="functional" insteadTadashi G. Takaoka2011-09-155-55/+43
| | | | | | | | Change-Id: I5facf17779cfe50bdc71a3592e851b3f58295a92
* | Merge "Add an option to user dict to match more precise locales"Jean Chalard2011-09-153-6/+41
|\ \ | |/ |/|
| * Add an option to user dict to match more precise localesJean Chalard2011-09-153-6/+41
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This should not be used lightly, as it violates the general contract of locale, and does kill some legitimate (albeit alledgedly rare) use patterns. Currently, the spell checker uses this because it uses a negative logic: it should match broadly, and when in doubt, match even more broadly, which is almost never the case of something that uses the locale. In other words: don't use this option unless you are very, VERY sure that's what you want. Hint: it isn't Bug: 5280929 Change-Id: Ib3cae319c692161d653630038c5bcde1f4340c05
* | Merge "Make action key background more visually prominent"Tadashi G. Takaoka2011-09-157-31/+39
|\ \
| * | Make action key background more visually prominentTadashi G. Takaoka2011-09-157-31/+39
| | | | | | | | | | | | | | | Bug: 5232726 Change-Id: I76ff2fb431ca295693ceb231a0f13da44f9293e6
* | | Merge "Avoid returning an object that's still used internally"Jean Chalard2011-09-152-6/+4
|\ \ \
| * | | Avoid returning an object that's still used internallyJean Chalard2011-09-152-6/+4
| | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There is no definite path known for this to end up being touched by other classes, but we could imagine through some way or some other it ends up shoved in the stringbuilder pool, leading to catastrophic results. Hopefully related to Bug: 5248688 Change-Id: Ib8abfc31263cbf31d515ed607ced5d8253971938
* | | Merge "Don't kill LatinIME if the spellchecker crashes."Jean Chalard2011-09-151-54/+65
|\ \ \ | |_|/ |/| |
| * | Don't kill LatinIME if the spellchecker crashes.Jean Chalard2011-09-151-54/+65
| |/ | | | | | | | | | | | | | | | | If the spellchecker encounters a bug and happens to crash, it may be sensible to avoid killing the keyboard in response. This is a possible way to do it, which comes with the big drawback of making bugs in the spell checker harder to find. Change-Id: Idb26fb592b9718e1dbdadeda8fbd1a8a1d805c28
* / Refactor Key.isFunctional to more generic Key.keyTypeTadashi G. Takaoka2011-09-156-11/+19
|/ | | | | Bug: 5232726 Change-Id: Idc861ca725f62eaf37795f57401573394a17d6d3
* Merge "Remove experimental settings"satok2011-09-142-67/+54
|\
| * Remove experimental settingssatok2011-09-142-67/+54
| | | | | | | | | | Bug: 5314288 Change-Id: I31cbc6da0ca5e61a5fa4a893c774f2110a5698f1
* | Merge "Filter out of spellchecking words that don't look like words"Jean Chalard2011-09-141-1/+37
|\ \
| * | Filter out of spellchecking words that don't look like wordsJean Chalard2011-09-141-1/+37
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Note that this affects only the results of the spell checker if actually passed such a word. For example, the spell checker will not flag "http://oju" as a typo, because it looks like a URL. But in the current implementation, TextView passes "http" and "oju" separately, so "oju" is still flagged as a typo. Bug: 5281875 Change-Id: I9d721fd3af34edc51b11908cf2e8fe994b164242
* | | Add a string for main dictionaryJean Chalard2011-09-141-0/+2
| | | | | | | | | | | | Change-Id: I6d5a7af534faffc812537ad3068de22eec5112dc
* | | Merge "Fix a bug where the user dict's locale match would be wrong"Jean Chalard2011-09-131-5/+33
|\ \ \ | |/ / |/| |
| * | Fix a bug where the user dict's locale match would be wrongJean Chalard2011-09-141-5/+33
| |/ | | | | | | | | | | | | This is preparation for Bug: 5280929 Change-Id: Iab0096acf057aa288b1986d225aad815bd70b145
* | Merge "Don't report 1-char words as typos"Jean Chalard2011-09-131-1/+1
|\ \
| * | Don't report 1-char words as typosJean Chalard2011-09-131-1/+1
| |/ | | | | | | | | Bug: 5281875 Change-Id: If6b6d057e18390bf01dcd31c46104b6856fbdbda
* / Clean up the mini keyboard for the Double low-9 quotation mark U+201E keyKen Wakasa2011-09-142-4/+8
|/ | | | | bug: 5310432 Change-Id: I15fe2e9854e9bcf43e833c786feffcb1a081c565
* Make WordComposer aware of capitalized wordTadashi G. Takaoka2011-09-133-57/+27
| | | | Change-Id: If6c0edef2334f018f2e04c6034f8ce747206f150
* Merge "Linger the "more suggestions" when the user is sliding the touch point"Tadashi G. Takaoka2011-09-121-3/+6
|\
| * Linger the "more suggestions" when the user is sliding the touch pointTadashi G. Takaoka2011-09-131-3/+6
| | | | | | | | | | Bug: 5299024 Change-Id: I00b5e59ba480cbf057bdd69d1357d2c477be90f7
* | Merge "Dismiss the more suggestions when the user is sliding down the touch ↵Tadashi G. Takaoka2011-09-121-5/+4
|\ \ | | | | | | | | | point"
| * | Dismiss the more suggestions when the user is sliding down the touch pointTadashi G. Takaoka2011-09-131-5/+4
| |/ | | | | | | | | Bug: 5299142 Change-Id: I466ff41948bbb49fb6874817ecfd94d338238d19
* / Update suggestions strip text colorTadashi G. Takaoka2011-09-136-11/+40
|/ | | | | Bug: 5287964 Change-Id: Ic40bb656873f41bb6d65427f02399464e831aab2
* Mark configuration string as not translatable.Eric Fischer2011-09-121-1/+1
| | | | Change-Id: I691e5a2254c20d339f831ccc79c581b74079e8c9
* Merge "Import revised translations."Eric Fischer2011-09-1241-301/+211
|\
| * Import revised translations.Eric Fischer2011-09-1241-301/+211
| | | | | | | | Change-Id: I8c8eddff23a899ed58aac7b4435ef3aa6f48f9fe
* | Merge "Update comment for "log_screen_metrics""Ken Wakasa2011-09-123-3/+21
|\ \
| * | Update comment for "log_screen_metrics"Ken Wakasa2011-09-123-3/+21
| | | | | | | | | | | | Change-Id: Ic558246814a09fa53c99c4b96ecd5c0f77ca5e93
* | | Remove unused string resource ngram_categoryTadashi G. Takaoka2011-09-1247-54/+0
|/ / | | | | | | | | | | This is a follow up change for Ib1fc608a. Change-Id: Id53965310fa4d13739835f37e1d6facf5b654a3f
* | Merge "Rename mini keyboard template xml file"Tadashi G. Takaoka2011-09-122-4/+0
|\ \
| * | Rename mini keyboard template xml fileTadashi G. Takaoka2011-09-122-4/+0
| | | | | | | | | | | | | | | | | | This is a follow up change for Ic83cd120. Change-Id: I459fb68a795dfedf9327bac5b63e9b031af1c167
* | | Merge "Remove unused string resource label_more_key"Tadashi G. Takaoka2011-09-1247-49/+0
|\ \ \
| * | | Remove unused string resource label_more_keyTadashi G. Takaoka2011-09-1247-49/+0
| |/ / | | | | | | | | | Change-Id: Id798ad572344beca39e2775090c362ffc1a12809
* / / Introduce autoXScale label optionTadashi G. Takaoka2011-09-127-5/+27
|/ / | | | | | | | | Bug: 5267649 Change-Id: I7fdcb98c209b7ccf73075ef3a4e758782fe161e3
* / Have the spell checker honor caseJean Chalard2011-09-122-23/+56
|/ | | | | Bug: 5281103 Change-Id: I415c84dbb55f1eeb5deb9f248b4056881982ee13