Commit graph

14349 commits

Author SHA1 Message Date
TreeHugger Robot
458d825272 Merge "Import translations. DO NOT MERGE" into qt-qpr1-dev 2019-10-12 17:27:34 +00:00
TreeHugger Robot
6486b82908 Merge "Import translations. DO NOT MERGE" into qt-qpr1-dev 2019-10-12 17:26:44 +00:00
TreeHugger Robot
028cdfdd05 Merge "Import translations. DO NOT MERGE" into qt-qpr1-dev 2019-10-12 17:24:45 +00:00
TreeHugger Robot
14e8d19136 Merge "Import translations. DO NOT MERGE" into qt-qpr1-dev 2019-10-12 17:21:41 +00:00
Bill Yi
36d9a28381 Import translations. DO NOT MERGE
Change-Id: Ic205e05525cdc7d270221307fe412de6034f113c
Auto-generated-cl: translation import
2019-10-12 07:30:47 -07:00
Bill Yi
d0ba6609c6 Import translations. DO NOT MERGE
Change-Id: I0e355f93e60c93c90ddaa09066c498e40359be2d
Auto-generated-cl: translation import
2019-10-12 07:24:29 -07:00
Bill Yi
01c680b71f Import translations. DO NOT MERGE
Change-Id: Iba616f0749d1c51716c4626d409183459f47aa27
Auto-generated-cl: translation import
2019-10-12 07:13:46 -07:00
Bill Yi
169174c49c Import translations. DO NOT MERGE
Change-Id: I8c858e95532a053a3bae22ca9eb1de09e6df38b3
Auto-generated-cl: translation import
2019-10-12 06:55:08 -07:00
Bill Yi
f025545a5e Import translations. DO NOT MERGE
Change-Id: I19facb6d7cec213691a081578669b78d34a18e1e
Auto-generated-cl: translation import
2019-10-12 06:44:06 -07:00
TreeHugger Robot
5d962cfa05 Merge "Import translations. DO NOT MERGE" into qt-qpr1-dev 2019-09-28 21:08:35 +00:00
Bill Yi
200379da8c Import translations. DO NOT MERGE
Change-Id: I3cefde7ca4a9a8cc2545425cf55ffbe682d23c00
Auto-generated-cl: translation import
2019-09-28 08:22:17 -07:00
Bill Yi
3cdb1c85ec Import translations. DO NOT MERGE
Change-Id: Idcedda568c413544da952613c556345175ba4d9d
Auto-generated-cl: translation import
2019-09-28 08:19:50 -07:00
TreeHugger Robot
a47de0ea53 Merge "Import translations. DO NOT MERGE" into qt-qpr1-dev 2019-09-15 22:06:33 +00:00
Bill Yi
6d4054689c Import translations. DO NOT MERGE
Change-Id: I4e461ef0ca123067d2e5dfe83bbf2e574c316aaf
Auto-generated-cl: translation import
2019-09-14 13:51:21 -07:00
Bill Yi
926f9a639f Import translations. DO NOT MERGE
Change-Id: Ia6e012e9fc72e368d328f70a573229c9a19601b6
Auto-generated-cl: translation import
2019-09-14 13:49:08 -07:00
TreeHugger Robot
7b9006e18c Merge "Import translations. DO NOT MERGE" into qt-qpr1-dev 2019-09-03 19:22:38 +00:00
Bill Yi
19b7dc6cbb Import translations. DO NOT MERGE
Auto-generated-cl: translation import

Bug: 64712476
Change-Id: I71e377a96cbf732af7d10ef6db7e964774114179
2019-09-03 08:19:20 -07:00
Bill Yi
e0d1d88541 Import translations. DO NOT MERGE
Auto-generated-cl: translation import

Bug: 64712476
Change-Id: I175a8daf0a75e10e0c00c41103c2a30722714fb9
2019-09-03 08:17:03 -07:00
TreeHugger Robot
64302ec808 Merge "Import translations. DO NOT MERGE" into qt-r1-dev 2019-07-14 22:23:41 +00:00
Bill Yi
dac2017376 Import translations. DO NOT MERGE
Auto-generated-cl: translation import

Bug: 64712476
Change-Id: Ib15edbefa78b413711bc9a114c035e4f042029d8
2019-07-14 02:56:47 -07:00
Bill Yi
0e8ed52d25 Import translations. DO NOT MERGE
Auto-generated-cl: translation import

Bug: 64712476
Change-Id: I5d3e002b9c8b5b9163674ee55b0a78c86d7a4367
2019-07-14 02:54:47 -07:00
Bill Yi
e08f778e3b Import translations. DO NOT MERGE
Auto-generated-cl: translation import

Bug: 64712476
Change-Id: Idab5d09722e584c5ffcc5ff574c28bcbbf729aa5
2019-06-25 13:54:19 -07:00
TreeHugger Robot
946037ccaa Merge "Import translations. DO NOT MERGE" into qt-r1-dev 2019-06-19 02:19:26 +00:00
TreeHugger Robot
00f42c18e7 Merge "Import translations. DO NOT MERGE" into qt-r1-dev 2019-06-19 01:56:54 +00:00
Bill Yi
3c377f755c Import translations. DO NOT MERGE
Auto-generated-cl: translation import

Bug: 64712476
Change-Id: I32470cb45f56eb8bdc8f2b2e055e649d34c5e7f3
2019-06-18 15:46:46 -07:00
Bill Yi
0d2eb8b4db Import translations. DO NOT MERGE
Auto-generated-cl: translation import

Bug: 64712476
Change-Id: I2d3706b2fa62b1f3b561db60763e895910b1cbbc
2019-06-18 15:46:01 -07:00
Bill Yi
890f13eb56 Import translations. DO NOT MERGE
Auto-generated-cl: translation import

Bug: 64712476
Change-Id: I714e7c7937c2377d86ee7f2a514117d0255f4761
2019-06-18 15:44:18 -07:00
Yohei Yukawa
d762841494 Launch AOSP Keyboard Settings on the same display
This CL demonstrates how an IME can show an Activity on the display
where the IME is shown.  The key points are:

 * The current display ID can be obtained as follows.

    final int curentDisplayId = inputMethodService
            .getSystemService(WindowManager.class)
            .getDefaultDisplay()
            .getDisplayId();

 * When launching an Activity, specify the target display ID as
   follows.

    inputMethodService.startActivity(intent, ActivityOptions
            .makeBasic()
            .setLaunchDisplayId(curentDisplayId)
            .toBundle());

Fix: 131718879
Test: Manually verified as follows.
  1. Build aosp_blueline-userdebug and flash it.
  2. adb shell settings put global force_desktop_mode_on_external_displays 1
  3. adb shell settings put global overlay_display_devices 1920x1080/320
  4. adb reboot
  5. With a mouse, launch any application that has input field
     in the secondary display.
  6. Click that input field to bring up AOSP Keyboard.
  7. Long click the comma key then select the gear icon.
  8. Select "Android Keyboard Settings (AOSP)"
  9. Make sure that the AOSP Keyboard Settings is launched in
     the secondary display, not in the default display.
 10. Go back to the step 7.
 11. Select "Languages"
 12. Subtype Enabler for AOSP Keyboard is shown in the secondary
     display, not in the default display.
Change-Id: I9f89f371c38d9a7b5a06d018d4b41aa09815ea24
2019-05-04 09:52:07 -07:00
TreeHugger Robot
35cca31844 Merge "Import translations. DO NOT MERGE" into qt-dev 2019-05-04 07:01:44 +00:00
TreeHugger Robot
fed6dee6ce Merge "Import translations. DO NOT MERGE" into qt-dev 2019-05-04 06:59:34 +00:00
Bill Yi
ac9ff315d9 Import translations. DO NOT MERGE
Auto-generated-cl: translation import

Bug: 64712476
Change-Id: I5a1e14997b62527fe4b7c902855c999e06fee399
2019-05-03 19:49:02 -07:00
Bill Yi
fa95428cd0 Import translations. DO NOT MERGE
Auto-generated-cl: translation import

Bug: 64712476
Change-Id: I28ede254065c4491af0c8f82f724e1f83d5a8c69
2019-05-03 19:47:52 -07:00
Bill Yi
c21dbf355f Import translations. DO NOT MERGE
Auto-generated-cl: translation import

Bug: 64712476
Change-Id: Icf4d8be7d9322b87d1d2eebe55c6b7d270f47a2b
2019-05-03 19:43:12 -07:00
Bill Yi
dec7e77280 Import translations. DO NOT MERGE
Auto-generated-cl: translation import

Bug: 64712476
Change-Id: I582cc100421d415defcd817a96191f6608eea8ad
2019-04-24 21:42:13 -07:00
TreeHugger Robot
e73e47f83f Merge "Import translations. DO NOT MERGE" into qt-dev 2019-04-17 21:45:24 +00:00
TreeHugger Robot
7630c6c549 Merge "Import translations. DO NOT MERGE" into qt-dev 2019-04-17 21:32:27 +00:00
TreeHugger Robot
1999854ad9 Merge "Import translations. DO NOT MERGE" into qt-dev 2019-04-17 21:31:44 +00:00
TreeHugger Robot
c96234e71c Merge "Import translations. DO NOT MERGE" into qt-dev 2019-04-17 21:27:32 +00:00
TreeHugger Robot
b22d5f3fe7 Merge "Import translations. DO NOT MERGE" into qt-dev 2019-04-17 21:27:12 +00:00
Bill Yi
86df8fb903 Import translations. DO NOT MERGE
Auto-generated-cl: translation import

Bug: 64712476
Change-Id: Ibd1ea3ad66df1032a70a90f0f38df532b1f8e7a2
2019-04-16 19:28:34 -07:00
Bill Yi
ceded9ebcb Import translations. DO NOT MERGE
Auto-generated-cl: translation import

Bug: 64712476
Change-Id: Ia43a2ac5c29cef680fb4e44ef12da74176726b3b
2019-04-16 19:27:49 -07:00
Bill Yi
56198b8702 Import translations. DO NOT MERGE
Auto-generated-cl: translation import

Bug: 64712476
Change-Id: I3dee70ec398ce7e6f4bfb4b677a97153906a9b19
2019-04-16 19:26:44 -07:00
Bill Yi
2c79d22ccd Import translations. DO NOT MERGE
Auto-generated-cl: translation import

Bug: 64712476
Change-Id: I4a2e1950cd5eff7f1a64b023a15ec591f43b13c0
2019-04-16 19:26:01 -07:00
Bill Yi
9f3ef50e34 Import translations. DO NOT MERGE
Auto-generated-cl: translation import

Bug: 64712476
Change-Id: I3ffc9f82edaa14bc34372a9107e71e834a494c57
2019-04-16 19:24:27 -07:00
Bill Yi
dea379f4ba Import translations. DO NOT MERGE
Auto-generated-cl: translation import

Bug: 64712476
Change-Id: Id5f69f9696d57630083976b6e0b438409fc8b59e
2019-04-16 19:23:48 -07:00
TreeHugger Robot
9db1319d77 Merge "Import translations. DO NOT MERGE" into qt-dev 2019-04-07 06:25:13 +00:00
Bill Yi
ca994736cc Import translations. DO NOT MERGE
Auto-generated-cl: translation import

Bug: 64712476
Change-Id: I7437c061744c3a3ff86c6b476ac1a87525fc74d8
2019-04-05 17:42:08 -07:00
Bill Yi
4be998498e Import translations. DO NOT MERGE
Auto-generated-cl: translation import

Bug: 64712476
Change-Id: Ic1c492d7ebd6718099bc2b12f3daed09596218cd
2019-04-05 17:27:17 -07:00
Bill Yi
4292bf3f69 Import translations. DO NOT MERGE
Change-Id: I4f02f5f4ccc6ff864fb5120dc7766755fb773fcf
Auto-generated-cl: translation import
2019-03-23 07:56:54 -07:00
TreeHugger Robot
01090bdaaf Merge "Import translations. DO NOT MERGE" 2019-02-21 20:47:33 +00:00