aboutsummaryrefslogtreecommitdiffstats
path: root/java/src (unfollow)
Commit message (Collapse)AuthorFilesLines
2010-08-17Fixes for correction mode - reliably show the corrections when tapping on a ↵Amith Yamasani3-80/+143
word. Also, continue to show the corrections when user keeps replacing the word repeatedly with different corrections from the suggestion strip. There were problems with tapping suggestions quickly or tapping the same suggestion more than once (same length). Also fixes Bug: 2852891 - Text suggestion appears incorrectly when selecting text that's not a whole word. Changed the TextEntryState states to an enum type instead of int. Needed it to show the states for debugging purposes.
2010-08-17Fixed default preference issue.Yohei Fujii1-0/+1
Change-Id: I6d12bc054fde0fe3ea03b673e7b5b7d7f8db8d54
2010-08-13Fixed the issue of popup enabled when i change to symbol keyboard.Yohei Fujii2-1/+5
Bug:2909517 Change-Id: I1c010b1079a04ff3b08d690c536fbe8d4414ea14
2010-08-13Revert the open-source LatinIME package name -Ken Wakasa12-30/+18
from com.google.android.inputmethod.latin to com.android.inputmethod.latin Related change: https://android-git.corp.google.com/g/60862 bug: 2786392 Change-Id: Ib7c6cfe61db19ef50c401a01497eef5f1f5e239e
2010-08-12add new preference for popup previewYohei Fujii5-0/+40
this option is disabled as the default at x-large Bug:2909517 Change-Id: Ifda1b7ff89bc4beeee02ba0f3e01d441a9435b37
2010-08-10-UserBigramJae Yong Sung11-76/+677
-UnitTest for UserBigram -Changes for number of bigrams to load Change-Id: I2c6fbe6194d34112ccc52c7e199461d2350e8516
2010-08-10Import revised translations.Eric Fischer1-2/+2
Change-Id: I19c1bce22c2395b727891f60776946a0eec7145b
2010-08-05Fix for NPE in saveWordInHistoryAmith Yamasani1-0/+5
Bug: 2898207
2010-08-05Import revised translations.Eric Fischer20-80/+240
Change-Id: I5671feaa4760b2583052527f3026de9c4411c3a4
2010-08-06Fix a bug in backspace handling for the "Tap again to save"Ken Wakasa2-2/+27
bug: 2889273 Change-Id: I0f317e203f368f5f47738154a6dee0f556d56148
2010-08-04Import revised translations. DO NOT MERGEEric Fischer20-80/+40
Change-Id: Ia4de960b5d1168d49b7a97b22751fde11047f5ea
2010-08-03Generated hdpi drawable size reducedGilles Debunne6-0/+0
Change-Id: I653e483f85d04026654a5cd74b48a97b28bd7e45
2010-08-03Removed conflicting .9 pngGilles Debunne1-0/+0
Change-Id: Ifafdf81efa05445e143f4e2a44385f540540ecff
2010-08-03packages/inputmethods/LatinIME/ : added scaled hdpi version of assets that ↵Gilles Debunne7-0/+0
were moved to drawable-mdpi Change-Id: I3e0281e20362f051495b2750cd0b06ab77ed090f
2010-08-03Fix the bug that black symbols are shown when only one lanugage is selected.Fredrik Roubert3-0/+597
(Update with the files left out from Change-Id: I15f83fc43d91c2c9d74b40fdcecdfe239242d565.)
2010-08-02Move pngs from drawable to drawable-mdpi in project ↵Gilles Debunne32-0/+0
packages/inputmethods/LatinIME/ Change-Id: I7df8040996aab9c90547a472a7627f1f1afe4eb9
2010-07-29Fix possible NPE and IndexOutOfBoundsException.Tadashi G. Takaoka1-7/+8
Bug: 2868304 Change-Id: I2c474736fb9bb95da9e04bdeb9b9b641e7c3adda
2010-07-29Fix NPE introduced by Change-Id: Ie482167b2ae2804fa1aa43ffb5067af47b7553f1Tadashi G. Takaoka1-10/+16
Bug: 2868304 Change-Id: I60895e76c4288d4e0e960e5ba22cb47c4b989bf3
2010-07-30Move dictionary.xml which refers to the vendor-specific dictionaries to the ↵Ken Wakasa1-25/+0
vendor-specific directory. Change-Id: I0eff59ca186002fdafe3940720606cc4a39077a6
2010-07-29Add a layout for a black-characters based themesatok4-14/+284
bug: 2838151 Change-Id: Ia7136ac7432258386a53ebec2b26251c8caae0ea
2010-07-28Fix grammar error in commentTadashi G. Takaoka1-2/+2
Change-Id: I728c2fefcf3c22d30d192a9f4b3aedad4eddc2ed
2010-07-28Fix inconsistency between pop-up preview key and input keyTadashi G. Takaoka1-17/+30
This issue is caused by three reasons. - In touch move event and while time debouncing is going on, wrong key is shown as pop-up preview. - There is no pop-up preview key shown when touch up event occurs and also showing pop-up preview message is unintentionally canceled. - In detectAndSendKey() method, nearby keys' primary codes are mistakenly sent as Key codes. This is the last of three changes to fix bug #2868304 Bug: 2868304 Change-Id: Ie482167b2ae2804fa1aa43ffb5067af47b7553f1
2010-07-28Fix for build breakageJae Yong Sung1-2/+3
Change-Id: Ie7ec03bf10ec9c9ce1290942a47cb538eeef6169
2010-07-28- separate dict (uses xml)Jae Yong Sung17-305/+885
- retrieve bigrams that only starts with character typed and neighbor keys - contacts bigram - performance measure bug: 2873133 Change-Id: If97c005b18c82f3fafef50009dd2dfd972b0ab8f
2010-07-28Add hysteresis movement key debouncingTadashi G. Takaoka2-16/+25
When key is pressed, each key will have a halo which is 0.05 inch wider than the key. Bug: bug2517112 Change-Id: I1368ff4af5f5d230b8c2f0c05c3c27bdb89027ae
2010-07-29Update resources of the tentertive UI for tablet friendly UIsatok16-1/+1
Change-Id: I59acd50b3531cf02d71c124d7ce8211d0c3dcd7e
2010-07-27Refactor move and time de-bouncing codes into separate static classTadashi G. Takaoka1-63/+124
This is the second one of three changes to fix the bug#2868304. Bug: 2868304 Change-Id: I11a6d2e501888da98faf0c88c8d861c508d500fc
2010-07-27Add a logging code to send Bigram datasatok4-68/+125
- with some cleanups Change-Id: I737c9ee7f148f94e6299d6e962dda82701454759
2010-07-27Remove values-xlarge/styles.xml and added key_text_size to dimens.xmlsatok4-37/+4
Change-Id: I5b23950447742f70e7ca6dca21e8afaed28d30ec
2010-07-26Refactor UI message handling class to be more readableTadashi G. Takaoka1-40/+73
This is the first one of three changes to fix the bug#2868304. Bug: 2868304 Change-Id: I2eb31c0966b2a7695e19aed7fceb13dad0c5bf0d
2010-07-26Updating keyboard ids must happen everytime makeKeyboards() is calledTadashi G. Takaoka1-3/+4
In makeKeyboards(), there is a fall through pass in which the keyboards' id (mSymbolsId and mSymbolsShiftedId) will not be updated. Then in toggleShift(), current keyboard id (mCurrentId) will not match any of two and nothing happens. Bug: 2825858 Change-Id: Iaf8a7368f513b35cf77a67794ecd3e21aa08484b
2010-07-26Read the alternatives from the server-sideMaryam Garrett1-19/+57
This change will parse the voice-search word-based alternatives from the bundle returned by the server, rather than generating them on the client. Change-Id: I7d7abc224de3ab8f37eca18632a427d39fd61a78
2010-07-26Change the default value of keyTextSize for xlargesatok11-76/+45
- rename ginger to stone Change-Id: I6968ed1b388e1f55ecb27a449ca49be77790f9cc
2010-07-24Move Google's proprietary dictionaries for LatinIME to ↵Ken Wakasa1-0/+7
vendor/google/apps/LatinImeGoogle. bug: 2811749 Refer to https://android-git.corp.google.com/g/58621 Change-Id: I3721ad3b3a29673f1ddd32871b1575a45c7365ee
2010-07-22Remove unncessary special handling for sim buildYing Wang1-7/+2
Now JNI_H_INCLUDE is added to header search path by default for non-NDK build. Change-Id: If1a9a1fae3cea51de6f776edbf7a2982f3d92b65
2010-07-23Get rid of wrongly added "Don't translate" entries in values-sr/strings.xmlKen Wakasa1-14/+0
Change-Id: I10437a119fac68ae3231ad923b2ce090f56847e6
2010-07-21Add Norwegian and Danish keyboard layouts.Fredrik Roubert2-0/+426
Change-Id: I77e4f6105b1f5d4569ad59e3d536941310cc6c0d
2010-07-20Fix a string for zh-rCNsatok1-1/+1
Change-Id: I63d9c5254188a84c92cb4ff34988ebb5a2a034ae
2010-07-20Enable re-edit featuresatok1-2/+0
Change-Id: I4c6a9ddf3f3c4eb35076f4ed27e009462cfc2e9e
2010-07-20Change the default vaule of Log to be falsesatok2-2/+2
Change-Id: I8a3c0ce81b67e27b7559b534b4ccde2ad0783dbc
2010-07-20Prepare for master mergeKen Wakasa5-18/+13
- Rename the jni library name - Revert the local cert - LatinIme2Google -> LatinIME Please note that we'll use the new package name: com.google.android.inputmethod.latin Change-Id: Ibbab07e8102ade5a93660c0723cd86f600c14a7d
2010-07-20Add xlarge resourcessatok3-0/+87
Change-Id: I8879322ed8573d57257faf15b66b8ae04101971f
2010-07-20Change the name of the application to Latin Keyboardsatok22-43/+43
Change-Id: I0ae02c61fae200672004028196d3e8d990b4c32c
2010-07-16Slightly reluctant to scroll candidate strip to be able to easily choose the ↵Tadashi G. Takaoka1-1/+12
suggestion Also fixed the comment of mMinTouchableWidth Bug: 2581826 Change-Id: Idc79186b0647b0e7e7ec889488b019b7db5241ad
2010-07-17Backport https://android-git.corp.google.com/g/#change,52371 to Froyo. Fix ↵Ken Wakasa1-1/+3
bug: 2693836 - Russian keyboard is missing a letter Change-Id: Ic931991bc188f646d30a399bb0b268f415f12051
2010-07-16Add JNI_H_INCLUDE directory to LOCAL_C_INCLUDES to be able to build under ↵Tadashi G. Takaoka1-1/+1
source tree Change-Id: I06d1687fbd7f9d02c069d84a50c2b53950372733
2010-07-16Underlining for correction is causing problems with styled text. Disable for ↵Amith Yamasani1-8/+27
now. Disable until we find a cleaner solution to highlighting for correction (may need a framework change). Removed a check for VoiceInput.DELETE_SYMBOL, which is not in use any more.
2010-07-16Fix sim buildYing Wang1-2/+7
NDK does not support sim build. Change-Id: If3164399d72786c9445cd308376497b8ba76011c
2010-07-16Comment out re-editing featuresatok1-2/+4
Change-Id: Ib4ffee3a00b8dae75e3472ccdfcb3765625ed4ed
2010-07-16Change version to 0.21satok1-2/+2
Change-Id: I8e3792ba43293313baab0bb0d6bebba8c65df4b9