| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
| |
Bug: 8636060
Change-Id: I29ce4c82ea880a937b1c9e5daf494fcdbbdd1336
|
|
|
|
|
|
| |
Remove useless arguments, local vars, make stuff private
Change-Id: I7cc6c19e9c1703304d593e02be31eb9569cc7b4e
|
|
|
|
|
|
|
| |
If we can't get the right locale from the subtype switcher, we
should fallback in all cases.
Change-Id: I46a53a67927a793d9d3592a996a5a4392a36c6ff
|
|
|
|
| |
Change-Id: Id4d4f30ecdc80dd59543f90fe2525f4bcc5afb9d
|
|
|
|
| |
Change-Id: I6af8f2bd6b4917f9b119ff78a0f299b2f6fb921e
|
|
|
|
|
| |
Bug: 8636060
Change-Id: I0d8f93985ddc6e93ce9af0d92a8056620351a498
|
|
|
|
|
|
|
|
|
|
|
| |
We should not test punctuation with this equality test any more.
Also, whether the suggestion strip is displayed or not, or whether
the hint is displayed or not, has nothing to do with this method
and should be handled elsewhere rather than here -- and as a
matter of fact, it is, which makes this useless.
Bug: 8636060
Change-Id: I6a54ee87e4e9f81bc33158acf4a264c3abd5829d
|
|
|
|
|
| |
Bug: 8636060
Change-Id: Ic7c2dec2521613d52707457463691bec383177ff
|
|
|
|
|
|
|
| |
...and improve encapsulation and readability.
Bug: 8636060
Change-Id: I36407630b307df0721ea7fdb7e7a22cdf2b018b3
|
|\
| |
| |
| |
| |
| | |
* changes:
Remove "Use only personalization dictionary".
Remove redundant creation of dictionary facilitator.
|
| |
| |
| |
| | |
Change-Id: I2edab4e3ba4ea0b9b13f9bb224aac86cac9b9f31
|
| |
| |
| |
| |
| |
| | |
It may just return null.
Change-Id: I778fb48262ef8af28a4af50b70bb94ace75a488c
|
| |
| |
| |
| |
| |
| |
| | |
...and make a method private.
Bug: 8636060
Change-Id: If16f7e8ef3779f77a9db23fb7c54e7c23b043b86
|
|/
|
|
|
| |
Bug: 13062385
Change-Id: I426545d1fe8fd76bcf4d1dce19e6b571a55c79ae
|
|\ |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
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
|
| |
| |
| |
| | |
Change-Id: Icaeb7dddd16362cd4a6384d295f89c7fbabc8b35
|
|/
|
|
|
|
|
| |
This change must be checked in together with If38a754d00.
Bug: 10587358
Change-Id: I91580f9468bc5ee7ed1694d7852a60dc6793dac0
|
|\ |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
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
|
| |
| |
| |
| |
| | |
Bug: 11122480
Change-Id: I79a4a73ff09a2d34d4ca094d705e901fb4bc855c
|
|\ \
| |/
|/| |
|
| |
| |
| |
| |
| |
| | |
Bug: 13067743
Change-Id: I6fc68b5151430a5ab51777f4c381e20f5a657924
|
|/
|
|
|
|
|
| |
This CL also reset the notice version to 1.
This CL must be checked in together with Iea8d9ff038.
Change-Id: I838f7b5b295388d64d6aba90f50b06654eba16e5
|
|
|
|
|
|
|
| |
Wrongly removed in I1f50cb137b6054dc9.
Bug: 13067743
Change-Id: I27cd221cb7f6e403c3fc128d65d14dbf628b6f55
|
|
|
|
|
| |
Bug: 13067743
Change-Id: I1f50cb137b6054dc9442237586b70fc0aa2bf427
|
|
|
|
|
|
|
| |
AlertDialog.Builder.setOnDismissListener is supported from API 17.
Bug: 10587358
Change-Id: Ie8ce8e283b803f7f6bb58ced446e676339f980eb
|
|\ |
|
| |
| |
| |
| |
| |
| |
| | |
This change must be checked in together with Ifde70b1d3b.
Bug: 10587358
Change-Id: I9dc48f9d521e0e6f6269e4f184389ba805f3053f
|
|/
|
|
| |
Change-Id: Icb2821f61c4203254b7d573cad5ce71fbf0ed841
|
|\ |
|
| |
| |
| |
| |
| |
| |
| | |
Less code, less chance of stuff escaping, and a bit of a clarification.
Yay.
Change-Id: I3193fd8ad7ac28195260cbc231c4e498a63a460c
|
|/
|
|
| |
Change-Id: Ia2d04ab992f5a0cc736150b2691b2f8ae8f0955d
|
|
|
|
| |
Change-Id: I6c755565ba7689357d02d26cc0e92a93031953e8
|
|
|
|
|
| |
Bug: 13058751
Change-Id: Iba49e86b90d595473d91753827d499e551dad45c
|
|
|
|
|
| |
Bug: 13060852
Change-Id: I463fdf3d51cacf99693fcde2998ea751046d1cc5
|
|\ |
|
| |
| |
| |
| |
| | |
Bug: 10587358
Change-Id: Ieff7960e5e2b8609fddeb173af578a5d9b2c4d98
|
|/
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
| |
This change must be checked in together with I366c477516.
Bug: 12640318
Change-Id: I8d3864b9d9649c9e3306e82b01a6327b11281b1f
|
|\ |
|
| |
| |
| |
| |
| | |
Bug: 10587358
Change-Id: Ia060a9ca9dfc2e7fe0750536a9fea3b9cc5900c4
|
|/
|
|
|
| |
Bug: 10315296
Change-Id: Ieb020a23886514b3ba97611d8a6001f32b322f63
|
|
|
|
|
| |
Bug: 10587358
Change-Id: I7415a6f33e6b5542718164fea1555095d23233e5
|
|
|
|
|
| |
Bug: 10587358
Change-Id: I1af3faa59afb2fc4cb90176acff1c2b0b1ba369c
|
|\ |
|
| |
| |
| |
| |
| | |
Bug: 12913520
Change-Id: Ie15f97d90c142c51089280252b35b5ad1d226e19
|
|/
|
|
| |
Change-Id: I83a05a8369c2fe2fa7522f18eb00983a0b10dc19
|
|
|
|
|
| |
Bug: 8636060
Change-Id: Ib12eacc836e8d39c4165c97a2a287f32f6bf5405
|
|
|
|
|
|
|
| |
Access the suggestion strip through the interface instead.
Bug: 8636060
Change-Id: Ia8bd705c230f943e309d677ef683b1a2cbe68036
|