aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/LatinIME.java (follow)
Commit message (Expand)AuthorAgeFilesLines
* [IL110] Remove an unused interface function•••...and make a method private. Bug: 8636060 Change-Id: If16f7e8ef3779f77a9db23fb7c54e7c23b043b86 Jean Chalard2014-02-261-3/+1
* Remove useless args and processing.•••Bug: 13062385 Change-Id: I426545d1fe8fd76bcf4d1dce19e6b571a55c79ae Jean Chalard2014-02-261-16/+10
* Merge "Change a heuristic and add a log."Jean Chalard2014-02-211-0/+2
|\
| * Change a heuristic and add a log.•••The heuristic in RichInputConnection makes little sense when textLength > mExpectedSelStart but we have more than 1024 characters of text. If there are that many, it's about 100% sure that 1024 is not the correct cursor position. With no good guess, we'll just continue trusting the app, even though we know it's lying : at least it will make the problem visible to the app author. Also, there have been a lot of confusion about initialSelStart and initialSelEnd. The keyboard should log them so that it helps us and editor authors debug more easily these common problems. Issue #65170 in AOSP and Bug: 12772035 Change-Id: I6665a16c9f2832d33ee323f033bb38bcc092a3b4 Jean Chalard2014-02-201-0/+2
* | Add ImportantNoticeDialog•••Change-Id: Icaeb7dddd16362cd4a6384d295f89c7fbabc8b35 Tadashi G. Takaoka2014-02-211-45/+15
* | Support versioned important notice•••This change must be checked in together with If38a754d00. Bug: 10587358 Change-Id: I91580f9468bc5ee7ed1694d7852a60dc6793dac0 Tadashi G. Takaoka2014-02-211-3/+16
|/
* Merge "Don't distrust the cursor pos so much as to bug on IPC delay"Jean Chalard2014-02-201-3/+6
|\
| * Don't distrust the cursor pos so much as to bug on IPC delay•••When the cursor is moved by the user, the RichInputConnection is told about it. However, to work around a framework bug, it also looks at how many characters are in the buffer before the cursor, and if that's more than the value it's been passed, it deduces that's a framework bug and there are at least as many characters as seen before the cursor, so it puts the expected cursor position there. When you move the cursor, TextView calls onUpdateSelection, and when you move it fast, you'll get rapid-fire calls to onUpdateSelection. This is fine, the RIC is equipped to deal with that. However, these calls take some time to make it to the IME. In this instance, when the first call gets through and the IME calls TextView (synchronously) for text before the cursor, the cursor has already moved in the app, and TextView returns more characters than the cursor position was declared to be in this instance, so the RIC sets that as the expected cursor position. Sure enough, a split second later, the second call to onUpdateSelection arrives, with the new cursor position set where the RIC had found it too early. The RIC takes that as an "expected" cursor move, and the input does not get reset. Luckily, we have a way out. As far as we know, the framework bug only manifests itself upon rotation, which means we should only have to adjust for it in onStartInputView. Doing it in onUpdateSelection is too zealous (and probably too distrustful of the app to send the correct cursor positions). So we should just take care of the rotation case (by calling tryFixLyingCursorPosition in onStartInputView) and remove the compensating code in resetCachesUponCursorMoves. Bug: 12982502 Change-Id: Ic3c1408a1ec45deaea63b01d98376a79ae567d77 Jean Chalard2014-02-201-3/+6
* | Add test only methods to test personalized dicts.•••Bug: 11122480 Change-Id: I79a4a73ff09a2d34d4ca094d705e901fb4bc855c Keisuke Kuroyanagi2014-02-201-2/+10
* | Merge "Check all enabled IME's subtypes to enable personalization."Keisuke Kuroyanagi2014-02-201-1/+1
|\ \ | |/ |/|
| * Check all enabled IME's subtypes to enable personalization.•••Bug: 13067743 Change-Id: I6fc68b5151430a5ab51777f4c381e20f5a657924 Keisuke Kuroyanagi2014-02-201-1/+1
* | Change important notice version preference file•••This CL also reset the notice version to 1. This CL must be checked in together with Iea8d9ff038. Change-Id: I838f7b5b295388d64d6aba90f50b06654eba16e5 Tadashi G. Takaoka2014-02-201-30/+15
|/
* Call PersonalizationDictionarySessionRegistrar.init().•••Wrongly removed in I1f50cb137b6054dc9. Bug: 13067743 Change-Id: I27cd221cb7f6e403c3fc128d65d14dbf628b6f55 Keisuke Kuroyanagi2014-02-191-0/+4
* Remove personalization dicts for multilingual users.•••Bug: 13067743 Change-Id: I1f50cb137b6054dc9442237586b70fc0aa2bf427 Keisuke Kuroyanagi2014-02-191-9/+20
* Use AlertDialog.setOnDismissListener•••AlertDialog.Builder.setOnDismissListener is supported from API 17. Bug: 10587358 Change-Id: Ie8ce8e283b803f7f6bb58ced446e676339f980eb Tadashi G. Takaoka2014-02-191-2/+2
* Merge "Turn personalization on when important notice dialog is displayed"Tadashi G. Takaoka2014-02-191-19/+43
|\
| * Turn personalization on when important notice dialog is displayed•••This change must be checked in together with Ifde70b1d3b. Bug: 10587358 Change-Id: I9dc48f9d521e0e6f6269e4f184389ba805f3053f Tadashi G. Takaoka2014-02-191-19/+43
* | Fix: Use old suggest after reloading.•••Change-Id: Icb2821f61c4203254b7d573cad5ce71fbf0ed841 Keisuke Kuroyanagi2014-02-191-1/+3
|/
* Merge "Cleanup."Jean Chalard2014-02-181-7/+1
|\
| * Cleanup.•••Less code, less chance of stuff escaping, and a bit of a clarification. Yay. Change-Id: I3193fd8ad7ac28195260cbc231c4e498a63a460c Jean Chalard2014-02-181-7/+1
* | Some cosmetic fixes in LatinIME.java•••Change-Id: Ia2d04ab992f5a0cc736150b2691b2f8ae8f0955d Ken Wakasa2014-02-181-40/+38
|/
* Cosmetic fixes•••Change-Id: I6c755565ba7689357d02d26cc0e92a93031953e8 Ken Wakasa2014-02-181-23/+30
* Set neutral suggestions should be called after load settings•••Bug: 13058751 Change-Id: Iba49e86b90d595473d91753827d499e551dad45c Tadashi G. Takaoka2014-02-181-33/+33
* Update important notice version even when user select Settings•••Bug: 13060852 Change-Id: I463fdf3d51cacf99693fcde2998ea751046d1cc5 Tadashi G. Takaoka2014-02-181-1/+1
* Merge "Don't show important notice on password field"Tadashi G. Takaoka2014-02-171-4/+6
|\
| * Don't show important notice on password field•••Bug: 10587358 Change-Id: Ieff7960e5e2b8609fddeb173af578a5d9b2c4d98 Tadashi G. Takaoka2014-02-171-4/+6
* | Add go to "Settings" button to important notice dialog•••This CL also - removes icons on important notice title. - changes the "Personalized suggestions" summary text. This change must be checked in together with Id115d89ba9. Bug: 10587358 Change-Id: I52ff26fa8ae12445e9014ba08253f69e1be609f4 Tadashi G. Takaoka2014-02-171-10/+11
|/
* Add PunctuationSuggestions class•••This change must be checked in together with I366c477516. Bug: 12640318 Change-Id: I8d3864b9d9649c9e3306e82b01a6327b11281b1f Tadashi G. Takaoka2014-02-141-3/+1
* Merge "Show the suggestion strip for the important notice"Jean Chalard2014-02-141-1/+4
|\
| * Show the suggestion strip for the important notice•••Bug: 10587358 Change-Id: Ia060a9ca9dfc2e7fe0750536a9fea3b9cc5900c4 Jean Chalard2014-02-121-1/+4
* | Dump settings.•••Bug: 10315296 Change-Id: Ieb020a23886514b3ba97611d8a6001f32b322f63 Jean Chalard2014-02-121-7/+1
|/
* Make importance notice dialog cancel able•••Bug: 10587358 Change-Id: I7415a6f33e6b5542718164fea1555095d23233e5 Tadashi G. Takaoka2014-02-121-1/+1
* Show important notice strip•••Bug: 10587358 Change-Id: I1af3faa59afb2fc4cb90176acff1c2b0b1ba369c Tadashi G. Takaoka2014-02-101-2/+11
* Merge "Conditionally store the raw suggestions."Jean Chalard2014-02-061-2/+2
|\
| * Conditionally store the raw suggestions.•••Bug: 12913520 Change-Id: Ie15f97d90c142c51089280252b35b5ad1d226e19 Jean Chalard2014-02-061-2/+2
* | Unregister DictionaryDumpBroadcastReceiver in onDestroy().•••Change-Id: I83a05a8369c2fe2fa7522f18eb00983a0b10dc19 Keisuke Kuroyanagi2014-02-061-0/+1
|/
* [IL109] Move more code to InputLogic•••Bug: 8636060 Change-Id: Ib12eacc836e8d39c4165c97a2a287f32f6bf5405 Jean Chalard2014-02-051-95/+12
* [IL108] Remove some uses of LatinIME in input logic.•••Access the suggestion strip through the interface instead. Bug: 8636060 Change-Id: Ia8bd705c230f943e309d677ef683b1a2cbe68036 Jean Chalard2014-02-051-1/+2
* [IL107] Add an interface to access the suggestion view.•••Bug: 8636060 Change-Id: I603af6bcdaa31f64aaaf916784720a133388c737 Jean Chalard2014-02-051-6/+17
* Add dictionary dump buttons in debug settings.•••Bug: 11736680 Bug: 12810574 Change-Id: I1f797b5ac6acf94b40d9698d4535e8f5da2bfb17 Keisuke Kuroyanagi2014-02-041-0/+14
* Clear important notice strip•••Bug: 10587358 Change-Id: Ic90e5825200a1d424aac4ba263b252187a203241 Tadashi G. Takaoka2014-02-031-0/+1
* Merge "Show important notice dialog"Tadashi G. Takaoka2014-02-031-5/+20
|\
| * Show important notice dialog•••Bug: 10587358 Change-Id: I3b4282a1bb183aa901110a4a2fc1b6ed72818aae Tadashi G. Takaoka2014-02-031-5/+20
* | Merge "Have empty suggestions go through setNeutralSuggestions."Jean Chalard2014-02-031-2/+4
|\ \ | |/ |/|
| * Have empty suggestions go through setNeutralSuggestions.•••Bug: 12865205 Change-Id: If17a390c445d0820325a9b16cc4f2f27a361187a Jean Chalard2014-02-031-2/+4
* | Add important notice strip•••This change is a groundwork to show important notice. Bug: 10587358 Change-Id: I80aa70d30e2a529b37798f0df2183b41df3ac38a Tadashi G. Takaoka2014-01-311-0/+7
|/
* Show "Touch again to save" in system locale•••Bug: 12811156 Change-Id: I928daf17297ec5c526720850d6203cb9af0496ac Tadashi G. Takaoka2014-01-301-2/+1
* [IL106] Inline a now useless method.•••Bug: 8636060 Change-Id: Ic8e0225206358680aa0de421f17ab443c888036d Jean Chalard2014-01-291-12/+0
* [IL105] Remove more useless arguments•••Bug: 8636060 Change-Id: I9e817bb9622c84544a5ca8708e5c1fccad1ed447 Jean Chalard2014-01-291-6/+6
* [IL104] Remove useless arguments•••Bug: 8636060 Change-Id: I97a371fe0c6227eb0f03d3e391a33726e6280322 Jean Chalard2014-01-291-27/+7