Commit Graph

42008 Commits (main)

Author SHA1 Message Date
maia arson crimew 7aab3f949e make gradle buildable
many tears were shed in this process
2022-03-23 13:52:05 +01:00
Xin Li 85ef644a8a Merge "Merge Android 12L" 2022-03-08 06:54:28 +00:00
Xin Li 810578896e Merge Android 12L
Bug: 222710654
Merged-In: Iea002572895dfdb74f72b5d6fe7a1efbd4139cac
Change-Id: I4460e29cf09d440add5649faea52954c241bc524
2022-03-08 00:19:41 +00:00
Xin Li 6454ff57c1 Merge sc-v2-dev-plus-aosp-without-vendor@8084891
Bug: 214455710
Merged-In: If2cc1c5bdb257a9c0af653fa7157cf781a90bf1d
Change-Id: Iea002572895dfdb74f72b5d6fe7a1efbd4139cac
2022-02-11 06:57:48 +00:00
Yohei Yukawa 7b3ccaf646 Merge "Update OWNERS file" am: 34f49426b8
Original change: https://android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/1978927

Change-Id: I2e4812d5aadd665503e3a4fe860016d8e86a02f7
2022-02-11 04:15:42 +00:00
Yohei Yukawa 34f49426b8 Merge "Update OWNERS file" 2022-02-11 04:00:54 +00:00
Yohei Yukawa f71d040307 Update OWNERS file
Fix: 218752122
Test: presubmit
Change-Id: Ia4948d81f3f13518428375d635154c58c7fe9628
2022-02-10 01:34:32 +00:00
Ming-Shin Lu 36c1220335 Using IME context to inflate layout from S_V2 am: 6c752d8eca
Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/16613686

Change-Id: Id87eb67dbf2e4c8bc7060e5a8a524d30629f0571
2022-01-13 02:35:54 +00:00
Ming-Shin Lu 6c752d8eca Using IME context to inflate layout from S_V2
With CL[1],[2] to migrate InputMethodService as the subclass of the new
introduced class WindowProviderService in S_V2, IME context resources
can be managed by associating the window container of IME window when
its display/window configuration changed.

So we can get rid of createDisplayContext logic from S_V2 with gated
by SDK version and refining the method of get IME context with
documentation to make it clear.

[1]: Ie565e30ed5dd3f2cfe27355a6dded76dc3adc14b
[2]: I64a1614f32d097785915f6105b1813a929e0fe32

Bug: 213118079
Bug: 133825283
Test: manual with below steps
 1) adb install -r EditTextVariations.apk
 2) tapas LatinIME
 3) make
 4) adb install -r out/target/product/generic/system/app/LatinIME/\
        LatinIME.apk
 5) adb shell ime enable com.android.inputmethod.latin/.LatinIME
 6) adb shell ime set com.android.inputmethod.latin/.LatinIME
 5) Enable screen auto-rotation
 7) Launch EditTextVariations from launcher's shortcut
 8) Tap the first EditText field to show IME
 9) Rotate the device to the landscape mode
 10) Expect the IME should not be shrunk

Change-Id: If2cc1c5bdb257a9c0af653fa7157cf781a90bf1d
2022-01-12 11:50:28 +08:00
Ming-Shin Lu 68103a8646 [automerger skipped] Fix Keyboard Theme update when device orientation changed am: 6ae09365a5 am: 7f3bcefd9f -s ours
am skip reason: Merged-In I288a31baf04fa2e63d6b4a14ad81b401cb36ece5 with SHA-1 6ae09365a5 is already in history

Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/15021672

Change-Id: I52e4fa1371d8a8e6fcf7c92a03dc8861049ae14d
2021-06-18 15:24:50 +00:00
Ming-Shin Lu 2db995ef00 [automerger skipped] Fix Keyboard Theme update when device orientation changed am: 6ae09365a5 -s ours am: d7970ac3c6 -s ours
am skip reason: Merged-In I288a31baf04fa2e63d6b4a14ad81b401cb36ece5 with SHA-1 407f8a3216 is already in history

Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/15021672

Change-Id: I97cd4d4948c1a573eb50ee756e88152cc1bbb7ed
2021-06-18 15:18:00 +00:00
Ming-Shin Lu 7f3bcefd9f Fix Keyboard Theme update when device orientation changed am: 6ae09365a5
Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/15021672

Change-Id: I33a6fa7093b4633fc5bbd535b2c3d9d287022bc8
2021-06-18 15:08:19 +00:00
Ming-Shin Lu d7970ac3c6 [automerger skipped] Fix Keyboard Theme update when device orientation changed am: 6ae09365a5 -s ours
am skip reason: Merged-In I288a31baf04fa2e63d6b4a14ad81b401cb36ece5 with SHA-1 407f8a3216 is already in history

Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/15021672

Change-Id: I3d0ca553f117d3d0871930362f68b87df2105b1c
2021-06-18 15:07:45 +00:00
Ming-Shin Lu 6ae09365a5 Fix Keyboard Theme update when device orientation changed
As CL[1] introduces diplayContext to address
IME service context's Resources / DisplayMetrics update when
switching IME window to another display after onConfigurationChange.

In LatinIME#onInitializeInterface, we only update keyboard theme context
and displayContent when the displayId is changed, but overlooked even
the displayId is the same, the display context's resource configuration
might changed like the device orientation changd.

It leads getDefaultKeyboardHeight will get wrong config_max_keyboard_height
fraction value when rotating to landcape because the context resources
didn't get updated.

Add a check to update keyboard theme context when the current display
configuation is changed accordingly.

[1]: I0ed6a079af1ed90c75fee1d36d5ce3ef3c41f8ed

Fix: 186507147
Test: manual as issue steps
    1) Turn on auto-rotate
    2) Open Settings
    3) Rotating the device to landscape mode
    4) Tap “Search settings", verify if the soft-keyboard shown and the
       size is expected.
Change-Id: I288a31baf04fa2e63d6b4a14ad81b401cb36ece5
Merged-In: I288a31baf04fa2e63d6b4a14ad81b401cb36ece5
2021-06-18 02:16:19 +00:00
Yohei Yukawa 8405e5b18f [automerger skipped] Bump targetSdkVersion to "30" am: 07ce283acd -s ours am: 516ab1c9b1 -s ours
am skip reason: Merged-In I4bf7588c62fb77bf78d4afcb665e9bfbbef53966 with SHA-1 360052f304 is already in history

Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/14985309

Change-Id: Ib3d0cc6737d6ac5b03240114fc65503873b2f5f7
2021-06-17 10:43:53 +00:00
Yohei Yukawa ff75f321a7 [automerger skipped] Bump targetSdkVersion to "30" am: 07ce283acd am: 036d3a68d1 -s ours
am skip reason: Merged-In I4bf7588c62fb77bf78d4afcb665e9bfbbef53966 with SHA-1 360052f304 is already in history

Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/14985309

Change-Id: I312515621927fa92db2af43e6df3f075a555cb9e
2021-06-17 10:42:45 +00:00
Yohei Yukawa 036d3a68d1 Bump targetSdkVersion to "30" am: 07ce283acd
Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/14985309

Change-Id: Ie29ef64dd7638aeb2bdcaddc9a7384b7dae0f761
2021-06-17 10:34:36 +00:00
Yohei Yukawa 516ab1c9b1 [automerger skipped] Bump targetSdkVersion to "30" am: 07ce283acd -s ours
am skip reason: Merged-In I4bf7588c62fb77bf78d4afcb665e9bfbbef53966 with SHA-1 360052f304 is already in history

Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/14985309

Change-Id: Ifc9ea2e2344d5a501e9ff031410cc4f1da99c38c
2021-06-17 10:33:11 +00:00
Yohei Yukawa 07ce283acd Bump targetSdkVersion to "30"
With this CL, versionCode, targetSdkVersion and minSdkVersion will be
bumped/set as follows:

       versionCode: 28 -> 30
  targetSdkVersion: 28 -> 30
     minSdkVersion: 21

As far as we know, there should be no user-visible behavior change on
supported OS versions.

Fix: 189558760
Test: manually verified that LatinIME still is functional
Change-Id: I3a7deb452960b370f5290f3d1bac9c79fe935303
Merged-In: I4bf7588c62fb77bf78d4afcb665e9bfbbef53966
(cherry picked from commit 360052f304)
2021-06-15 11:13:09 -07:00
Treehugger Robot b6ae7ebae0 Merge "Bump targetSdkVersion to "30"" am: c880212a59 am: c7fa63d4c5 am: a6fbccdd9e
Original change: https://android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/1737355

Change-Id: I8be18798ecac3b163c27024c2a6217945b80e6ec
2021-06-15 06:59:03 +00:00
Treehugger Robot a6fbccdd9e Merge "Bump targetSdkVersion to "30"" am: c880212a59 am: c7fa63d4c5
Original change: https://android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/1737355

Change-Id: Ie0ef45d6f1171bd3767bd1a26001e9513a0b94fe
2021-06-15 06:49:43 +00:00
Treehugger Robot c7fa63d4c5 Merge "Bump targetSdkVersion to "30"" am: c880212a59
Original change: https://android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/1737355

Change-Id: I63caa1f35eeda340064f05c0310d3a5eccbb1690
2021-06-15 06:35:05 +00:00
Treehugger Robot c880212a59 Merge "Bump targetSdkVersion to "30"" 2021-06-15 06:24:25 +00:00
Yohei Yukawa 360052f304 Bump targetSdkVersion to "30"
With this CL, versionCode, targetSdkVersion and minSdkVersion will be
bumped/set as follows:

       versionCode: 28 -> 30
  targetSdkVersion: 28 -> 30
     minSdkVersion: 21

As far as we know, there should be no user-visible behavior change on
supported OS versions.

Fix: 189558760
Test: manually verified that LatinIME still is functional
Change-Id: I4bf7588c62fb77bf78d4afcb665e9bfbbef53966
2021-06-14 20:32:50 -07:00
Treehugger Robot 524b30d70d Merge "Fix Keyboard Theme update when device orientation changed" am: 7ae00baa87 am: 16a01e7c0d am: 9d1ee4ae5a
Original change: https://android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/1721930

Change-Id: I5a0cfb63667799ba52441eac6e083a05c8d6bae4
2021-05-28 06:50:42 +00:00
Treehugger Robot 9d1ee4ae5a Merge "Fix Keyboard Theme update when device orientation changed" am: 7ae00baa87 am: 16a01e7c0d
Original change: https://android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/1721930

Change-Id: Ic168a7cbb656a3939061ad58bd0cc7991c0ceff1
2021-05-28 06:26:09 +00:00
Treehugger Robot 16a01e7c0d Merge "Fix Keyboard Theme update when device orientation changed" am: 7ae00baa87
Original change: https://android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/1721930

Change-Id: I1d756d3f5a24e21b791ec0cd4726dadc1daa0759
2021-05-28 06:00:13 +00:00
Treehugger Robot 7ae00baa87 Merge "Fix Keyboard Theme update when device orientation changed" 2021-05-28 05:38:10 +00:00
Ming-Shin Lu 407f8a3216 Fix Keyboard Theme update when device orientation changed
As CL[1] introduces diplayContext to address
IME service context's Resources / DisplayMetrics update when
switching IME window to another display after onConfigurationChange.

In LatinIME#onInitializeInterface, we only update keyboard theme context
and displayContent when the displayId is changed, but overlooked even
the displayId is the same, the display context's resource configuration
might changed like the device orientation changd.

It leads getDefaultKeyboardHeight will get wrong config_max_keyboard_height
fraction value when rotating to landcape because the context resources
didn't get updated.

Add a check to update keyboard theme context when the current display
configuation is changed accordingly.

[1]: I0ed6a079af1ed90c75fee1d36d5ce3ef3c41f8ed

Fix: 186507147
Test: manual as issue steps
    1) Turn on auto-rotate
    2) Open Settings
    3) Rotating the device to landscape mode
    4) Tap “Search settings", verify if the soft-keyboard shown and the
       size is expected.
Change-Id: I288a31baf04fa2e63d6b4a14ad81b401cb36ece5
2021-05-28 10:18:03 +08:00
Pedro Loureiro e03eca7c3a [automerger skipped] Merge "Add lint baseline to address NewApi errors" am: 685abcb913 am: 0605aae4de am: 7e35eb12cd -s ours
am skip reason: skip tag Change-Id Ic37bd8c531af7e68c939ce9c05614c37e6699b03 with SHA-1 b47de75af3 is already in history

Original change: https://android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/1675572

Change-Id: Ibc1f110c41ad148391c842766732892c31340e03
2021-04-15 13:15:22 +00:00
Pedro Loureiro 7e35eb12cd Merge "Add lint baseline to address NewApi errors" am: 685abcb913 am: 0605aae4de
Original change: https://android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/1675572

Change-Id: I1dca662027a09c4377349f1cc59e7bd5317d1e2a
2021-04-15 12:27:00 +00:00
Pedro Loureiro 0605aae4de Merge "Add lint baseline to address NewApi errors" am: 685abcb913
Original change: https://android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/1675572

Change-Id: I7d81740175550e0be44ac9069bfa6e2f1fb8716d
2021-04-15 11:49:52 +00:00
Pedro Loureiro 685abcb913 Merge "Add lint baseline to address NewApi errors" 2021-04-15 11:03:47 +00:00
Pedro Loureiro 57d4aef280 Add lint baseline to address NewApi errors
We are enabling a new lint check where the min sdk != compile sdk.
It has produced a lot of errors and adding the baseline file(s)
allows us to continue work without introducing more problems.

Bug: 150847901

Test: m lint-check
Change-Id: Ic37bd8c531af7e68c939ce9c05614c37e6699b03
Merged-In: Ic37bd8c531af7e68c939ce9c05614c37e6699b03
2021-04-13 15:29:44 +00:00
Pedro Loureiro b47de75af3 Add lint baseline to address NewApi errors
We are enabling a new lint check where the min sdk != compile sdk.
It has produced a lot of errors and adding the baseline file(s)
allows us to continue work without introducing more problems.

Bug: 150847901

Test: m lint-check
Change-Id: Ic37bd8c531af7e68c939ce9c05614c37e6699b03
2021-04-12 10:48:26 +00:00
Xin Li 86bf93cdeb [automerger skipped] Mark ab/7061308 as merged in stage. am: b7027a6614 -s ours am: 8a739fb004 -s ours
am skip reason: Change-Id Ie1a0307f3c8f3fc4013b4395cb843f1a96d32b6d with SHA-1 644c0062b9 is in history

Original change: undetermined

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: I9ad294a9e69b8745bfee510271ab83e3ef1e8d2d
2021-02-21 19:11:52 +00:00
Bob Badour a2330e5fb4 Merge "[LSC] Add LOCAL_LICENSE_KINDS to packages/inputmethods/LatinIME" am: 27f8543961 am: 155f6bbb4a am: 4fd407ab72
Original change: https://android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/1588514

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: I154b31a133b0b6b756a536f1c5a6c6e1b62ef1b9
2021-02-21 19:04:28 +00:00
Xin Li 8a739fb004 [automerger skipped] Mark ab/7061308 as merged in stage. am: b7027a6614 -s ours
am skip reason: Change-Id Ie1a0307f3c8f3fc4013b4395cb843f1a96d32b6d with SHA-1 644c0062b9 is in history

Original change: undetermined

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: Ieabf19901256253b47b767a3639b14fd3ece89a5
2021-02-20 12:06:21 +00:00
Xin Li b7027a6614 Mark ab/7061308 as merged in stage.
Bug: 180401296
Merged-In: Ie1a0307f3c8f3fc4013b4395cb843f1a96d32b6d
Change-Id: I833ab148ad9f4632a639c45b97d0b6aebd7471f1
2021-02-20 00:24:34 -08:00
Bob Badour 4fd407ab72 Merge "[LSC] Add LOCAL_LICENSE_KINDS to packages/inputmethods/LatinIME" am: 27f8543961 am: 155f6bbb4a
Original change: https://android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/1588514

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: I8ff8434dbc8097b1b1c6d36b9e652166ac19c326
2021-02-19 07:48:41 +00:00
Bob Badour 155f6bbb4a Merge "[LSC] Add LOCAL_LICENSE_KINDS to packages/inputmethods/LatinIME" am: 27f8543961
Original change: https://android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/1588514

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: I5d0e72a1db85341c5c0139b7db54862c074d6bbd
2021-02-19 06:54:36 +00:00
Bob Badour 27f8543961 Merge "[LSC] Add LOCAL_LICENSE_KINDS to packages/inputmethods/LatinIME" 2021-02-19 06:23:21 +00:00
Bob Badour f3d9532a32 [LSC] Add LOCAL_LICENSE_KINDS to packages/inputmethods/LatinIME
Added SPDX-license-identifier-Apache-2.0 to:
  Android.bp
  common/Android.bp
  java/Android.bp
  native/dicttoolkit/Android.bp
  native/jni/Android.bp
  tests/Android.bp
  tools/EditTextVariations/Android.bp
  tools/dicttool/Android.bp
  tools/make-keyboard-text/Android.bp

Bug: 68860345
Bug: 151177513
Bug: 151953481

Test: m all

Exempt-From-Owner-Approval: janitorial work
Change-Id: I440008bffac5c97a2497970af377a9d03262b6d8
2021-02-17 09:46:27 -08:00
Treehugger Robot 936ca12acb Merge "Mark liblatinime_unittests as unit_test:true to run in presubmit in CI" am: e04480b68b am: 7471a535f4 am: ecd2dab26e
Original change: https://android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/1589854

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: I8458c3d58fe2efc428a69c4591c5b87bfcbd1035
2021-02-17 12:01:31 +00:00
Treehugger Robot ecd2dab26e Merge "Mark liblatinime_unittests as unit_test:true to run in presubmit in CI" am: e04480b68b am: 7471a535f4
Original change: https://android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/1589854

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: I4dc6006500214b819d459dc514541a06ca8cd33a
2021-02-17 11:27:38 +00:00
Treehugger Robot 7471a535f4 Merge "Mark liblatinime_unittests as unit_test:true to run in presubmit in CI" am: e04480b68b
Original change: https://android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/1589854

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: Idd588629cd634ebf3772d16bce882bc5b1732362
2021-02-17 10:47:51 +00:00
Treehugger Robot e04480b68b Merge "Mark liblatinime_unittests as unit_test:true to run in presubmit in CI" 2021-02-17 10:24:20 +00:00
Treehugger Robot 8d3ca33152 Merge "Fix broken liblatinime_unittests" am: 62013c4f80 am: 5e1756c5fe am: 326ff853c7
Original change: https://android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/1589747

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: I942d720895724ae24a241a59c3feaf71b5d2cba2
2021-02-16 20:09:36 +00:00
Treehugger Robot 326ff853c7 Merge "Fix broken liblatinime_unittests" am: 62013c4f80 am: 5e1756c5fe
Original change: https://android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/1589747

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: I6dd60fb5d01feed612f81fbb33adf07b1abec0cc
2021-02-16 19:35:32 +00:00
Treehugger Robot 5e1756c5fe Merge "Fix broken liblatinime_unittests" am: 62013c4f80
Original change: https://android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/1589747

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: I15fc9d572d67f9d8aabb699636d18f642f30cd02
2021-02-16 19:16:10 +00:00