TreeHugger Robot
e02dda0aab
Merge "Hide the icon if there is no media session or album art." into rvc-qpr-dev am: e9d4e584d5
...
Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Settings/+/12613116
Change-Id: Id1ecd31b8ad1b6290ad7fda12a7752f55655ad2b
2020-09-22 03:50:01 +00:00
TreeHugger Robot
e9d4e584d5
Merge "Hide the icon if there is no media session or album art." into rvc-qpr-dev
2020-09-22 03:24:09 +00:00
TreeHugger Robot
a581b932c7
Merge "Update state when there is Bluetooth tethering state changed" into rvc-qpr-dev am: e0e283cb4c
...
Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Settings/+/12559490
Change-Id: If762b9aadc9f69e55a9e58400e6b92f44ba6a491
2020-09-22 03:22:13 +00:00
TreeHugger Robot
d37ef77d01
Merge "Update global bubble settings mp4" into rvc-qpr-dev am: 6905a3a353
...
Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Settings/+/12631062
Change-Id: Ibc8f8f67c95c84cbd9d5828790f663711f7b62f9
2020-09-22 03:21:59 +00:00
TreeHugger Robot
e0e283cb4c
Merge "Update state when there is Bluetooth tethering state changed" into rvc-qpr-dev
2020-09-22 03:16:37 +00:00
TreeHugger Robot
6905a3a353
Merge "Update global bubble settings mp4" into rvc-qpr-dev
2020-09-22 03:02:44 +00:00
Jason Chiu
f447cbbcb5
Fix the ANR in panel when changing volume continuously
...
When users open volume panel and keep on changing the volume slider for
a while, the panel starts to defer the slider updating, and finally gets
stuck and causes an ANR.
Root cause:
Volume panel has four volume adjusting slices. Each of them registers
a broadcast receiver to listen to the volume changed and muted events.
However, when the media volume changes, AudioManager will send four
broadcasts (music, assistant, accessibility, tts) to every receiver, and
each of them will reload slice four times. Thus, one media volume
changed event will lead to 16 (4*4) UI updates. Consequently, keeping on
sliding the volume bar will trigger hundreds of broadcasts and UI
updates, which makes the system busy and getting stuck.
Solution:
Introduce a VolumeSliceHelper to integrate the broadcasts of the volume
slices specifically.
1. Only register one broadcast receiver to reduce the broadcast loading
since the four slices are listening to the same signal.
2. Filter the only one eligible broadcast among the multiple concurrent
ones, and then relay it to the registered slice.
3. Listen to one more action STREAM_DEVICES_CHANGED_ACTION to update the
volume panel when audio output device changes.
Test: robotest, visual
Fixes: 144134209
Fixes: 160489394
Change-Id: I780b9eee35802b19a5f0ab0a7d07bd3e081f5556
Merged-In: I780b9eee35802b19a5f0ab0a7d07bd3e081f5556
(cherry picked from commit 2c7b77dad7
)
2020-09-22 02:58:01 +00:00
Jason Chiu
7db71ac87a
Fix the endless panel loading
...
Re-launching volume panel continuously will trigger an endless panel
loading, show a transparent unfinished UI, and then block the user's
screen.
Root cause:
When the activity receives a new intent from user's clicking, it will
call PanelFragment#createPanelContent to update the current fragment.
The method triggers an animation and then loads the panel content. If
multiple invocations run concurrently before the animation or the
loading finish, the loader's countdown latch will be increased
abnormally and lead to the endless loading.
Solution:
1. Since the invocations are in UI thread, simply add a flag to avoid
reentrance when the panel is animating or loading.
2. Filter out the same panel's creation request when the panel is still
visible.
3. Do not force a panel's recreation when it's under construction.
Fixes: 143889510
Fixes: 160491854
Test: robotest, manual
Change-Id: I821faedeb62354929f3af9804cbbe44ee5bb8a53
Merged-In: I821faedeb62354929f3af9804cbbe44ee5bb8a53
(cherry picked from commit 6a8d2c5e55
)
2020-09-22 02:55:22 +00:00
TreeHugger Robot
bea5bfe1ce
Merge "Fix usb menu not switch to "File Transfer/Android Auto" right after connected to car unit"
2020-09-22 02:55:15 +00:00
Lyn Han
29559b1645
Disable bubbles for low ram devices
...
Fixes: 167677013
Test: set low ram true => bubble settings hidden
Test: make -j80 RunSettingsRoboTests ROBOTEST_FILTER="Bubble"
Change-Id: I1c40a05404ea7c78cc82102b33e4bc3cb3528075
2020-09-21 15:11:07 -07:00
TreeHugger Robot
7a7af7e23d
[automerger skipped] Merge "Fix the device on "Media devices" not updated issue" into rvc-qpr-dev am: ca04ccd911
am: 101308bc39
-s ours
...
am skip reason: Change-Id I7a0d9f5332153ee80634e191847b84cd7c380b7d with SHA-1 cafeab2813
is in history
Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Settings/+/12634109
Change-Id: If7f3f14ab9cdcfd74a310dcb7d1776621f4dd2d8
2020-09-21 12:04:36 +00:00
TreeHugger Robot
1d17f9407e
[automerger skipped] Merge "Fix cast volume control bar not work" into rvc-qpr-dev am: 35f15fdbff
am: b243b9a871
-s ours
...
am skip reason: Change-Id I2c120f18e24a66aeff5565e952fa4064149ec540 with SHA-1 7f3efd4357
is in history
Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Settings/+/12613115
Change-Id: I4e64ef97f2519ef19a18d3c4256ff43e95d0dffa
2020-09-21 11:50:17 +00:00
TreeHugger Robot
101308bc39
Merge "Fix the device on "Media devices" not updated issue" into rvc-qpr-dev am: ca04ccd911
...
Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Settings/+/12634109
Change-Id: I5efb4653490d20f3c3fafd69ac1c3e7373921774
2020-09-21 10:17:24 +00:00
changbetty
dd91eadaaf
[Telephony settings] Settings crashes when rotate screen in Preferred network type
...
When activity is recreated, fragments are automatically reattached.
Need to check the savedInstanceState is null or not when we want to add framgment in MobileNetworkActivity.
(lost to check in ag/9667137)
Bug: 154087690
Test: Manual
make RunSettingsRoboTests -j ROBOTEST_FILTER=MobileNetworkActivityTest
Change-Id: Id169353f6dc10306dddd823a904f0803b26a6ddc
2020-09-21 18:12:03 +08:00
TreeHugger Robot
ca04ccd911
Merge "Fix the device on "Media devices" not updated issue" into rvc-qpr-dev
2020-09-21 10:01:54 +00:00
Hugh Chen
ec597c220e
Fix the device on "Media devices" not updated issue
...
- This CL uses new CachedBluetoothDevice callback instance
in construct to avoid unregister wrong callback.
- This CL uses flag to make sure preference will register callback
on onAttached() when preference remove callback on
onPrepareForRemoval() or onDetached().
- Update test case
Bug: 168682778
Bug: 157653997
Test: make -j42 RunSettingsRoboTests
Change-Id: I7a0d9f5332153ee80634e191847b84cd7c380b7d
Merged-In: I7a0d9f5332153ee80634e191847b84cd7c380b7d
(cherry picked from commit cafeab2813
)
2020-09-21 09:58:33 +00:00
Hugh Chen
db0aa6541a
Hide the icon if there is no media session or album art.
...
- Before this CL, the output switch panel will show a default
icon if there is no media session or album art.
This CL will hide the icon if there is no media session
or album art.
- Add test case
Bug: 161495909
Test: make -j42 RunSettingsRoboTests
Change-Id: I5f80158b12f89c8499fb97d0b203ebeffefbc18b
Merged-In: I5f80158b12f89c8499fb97d0b203ebeffefbc18b
(cherry picked from commit 30805af9de
)
2020-09-21 09:48:46 +00:00
Arc Wang
2421aeaa94
Modify Wi-Fi settings owners file
...
Test: N/A.
Change-Id: I03afd97db30b82661f2acd73e4720ab56dd2a5f2
2020-09-21 17:46:03 +08:00
TreeHugger Robot
b243b9a871
Merge "Fix cast volume control bar not work" into rvc-qpr-dev am: 35f15fdbff
...
Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Settings/+/12613115
Change-Id: Icd301ba334760add2f730e4a7739fc942528680e
2020-09-21 09:43:49 +00:00
TreeHugger Robot
35f15fdbff
Merge "Fix cast volume control bar not work" into rvc-qpr-dev
2020-09-21 09:23:22 +00:00
Bill Yi
10c930c4c0
[automerger skipped] Merge "Merge mainline-release 6664920 to master - DO NOT MERGE" am: 94c8353286
am: e7038aa1a3
-s ours am: 657e0f3008
-s ours am: 379ae6c7b8
-s ours am: 95e4eb59e4
-s ours
...
am skip reason: subject contains skip directive
Original change: https://android-review.googlesource.com/c/platform/packages/apps/Settings/+/1430073
Change-Id: Ice308fc954cd91aee945e410bebfeb673bfc4f9a
2020-09-21 08:27:58 +00:00
Bill Yi
762d039b47
[automerger skipped] Merge mainline-release 6664920 to master - DO NOT MERGE am: 48a84d855f
am: 5d7f242557
-s ours am: d50cfa9b63
-s ours am: 5ff5b3187c
-s ours am: bd90a0d0ff
-s ours
...
am skip reason: subject contains skip directive
Original change: https://android-review.googlesource.com/c/platform/packages/apps/Settings/+/1430073
Change-Id: I7b35900c07fa69407ec5bfa073a105db07e1d0a3
2020-09-21 08:27:03 +00:00
Jeremy Goldman
37cfec7ac2
Merge "[Testing] AndroidJunit Enhanced4gLteSliceHelperTest"
2020-09-21 03:46:18 +00:00
TreeHugger Robot
660b17c7cb
Merge "Update state when there is Bluetooth tethering state changed"
2020-09-21 03:24:38 +00:00
TreeHugger Robot
c4ae769663
Merge "Import translations. DO NOT MERGE ANYWHERE"
2020-09-19 14:05:30 +00:00
Bill Yi
95e4eb59e4
[automerger skipped] Merge "Merge mainline-release 6664920 to master - DO NOT MERGE" am: 94c8353286
am: e7038aa1a3
-s ours am: 657e0f3008
-s ours am: 379ae6c7b8
-s ours
...
am skip reason: Change-Id Ifa4dc400eb8c87c2514a3629288657520476fbfd with SHA-1 ccc406381a
is in history
Original change: https://android-review.googlesource.com/c/platform/packages/apps/Settings/+/1430073
Change-Id: Ia188911bc5dffe63a0dc7a576314efecb1b5ba05
2020-09-19 08:01:56 +00:00
Bill Yi
bd90a0d0ff
[automerger skipped] Merge mainline-release 6664920 to master - DO NOT MERGE am: 48a84d855f
am: 5d7f242557
-s ours am: d50cfa9b63
-s ours am: 5ff5b3187c
-s ours
...
am skip reason: Change-Id Ifa4dc400eb8c87c2514a3629288657520476fbfd with SHA-1 ccc406381a
is in history
Original change: https://android-review.googlesource.com/c/platform/packages/apps/Settings/+/1430073
Change-Id: I07395bbd3c6d17c709d7506df657025e0306adc3
2020-09-19 08:01:02 +00:00
Bill Yi
379ae6c7b8
[automerger skipped] Merge "Merge mainline-release 6664920 to master - DO NOT MERGE" am: 94c8353286
am: e7038aa1a3
-s ours am: 657e0f3008
-s ours
...
am skip reason: Change-Id Ifa4dc400eb8c87c2514a3629288657520476fbfd with SHA-1 ccc406381a
is in history
Original change: https://android-review.googlesource.com/c/platform/packages/apps/Settings/+/1430073
Change-Id: I9bffdf82e1739f2d962e3f5b5aa5369a45d0533b
2020-09-19 07:01:22 +00:00
Bill Yi
5ff5b3187c
[automerger skipped] Merge mainline-release 6664920 to master - DO NOT MERGE am: 48a84d855f
am: 5d7f242557
-s ours am: d50cfa9b63
-s ours
...
am skip reason: Change-Id Ifa4dc400eb8c87c2514a3629288657520476fbfd with SHA-1 ccc406381a
is in history
Original change: https://android-review.googlesource.com/c/platform/packages/apps/Settings/+/1430073
Change-Id: I208048eb3581ea9f380b6e51a8f253106e942ece
2020-09-19 07:00:56 +00:00
TreeHugger Robot
93ded459c1
[automerger skipped] Merge "Import translations. DO NOT MERGE ANYWHERE" into rvc-qpr-dev am: 4ac22e55fe
-s ours am: 9e25089aee
-s ours
...
am skip reason: subject contains skip directive
Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Settings/+/12642763
Change-Id: I3df4c8e1feddfca02f8d86d037e2b6be775d4e74
2020-09-19 06:43:36 +00:00
TreeHugger Robot
f0548a3de2
Merge "Import translations. DO NOT MERGE ANYWHERE"
2020-09-19 06:38:04 +00:00
TreeHugger Robot
9e25089aee
[automerger skipped] Merge "Import translations. DO NOT MERGE ANYWHERE" into rvc-qpr-dev am: 4ac22e55fe
-s ours
...
am skip reason: subject contains skip directive
Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Settings/+/12642763
Change-Id: I0c569b44137ea6efbd324021d06e876cf145e61b
2020-09-19 06:25:36 +00:00
Bill Yi
657e0f3008
[automerger skipped] Merge "Merge mainline-release 6664920 to master - DO NOT MERGE" am: 94c8353286
am: e7038aa1a3
-s ours
...
am skip reason: Change-Id Ifa4dc400eb8c87c2514a3629288657520476fbfd with SHA-1 ccc406381a
is in history
Original change: https://android-review.googlesource.com/c/platform/packages/apps/Settings/+/1430073
Change-Id: I0201d683bb94a0143cd81fa094993007aa7aad6d
2020-09-19 05:51:28 +00:00
Bill Yi
d50cfa9b63
[automerger skipped] Merge mainline-release 6664920 to master - DO NOT MERGE am: 48a84d855f
am: 5d7f242557
-s ours
...
am skip reason: Change-Id Ifa4dc400eb8c87c2514a3629288657520476fbfd with SHA-1 ccc406381a
is in history
Original change: https://android-review.googlesource.com/c/platform/packages/apps/Settings/+/1430073
Change-Id: I4463fa09a3cc3cd986293a03a0cd8424cfa20a41
2020-09-19 05:50:34 +00:00
TreeHugger Robot
4ac22e55fe
Merge "Import translations. DO NOT MERGE ANYWHERE" into rvc-qpr-dev
2020-09-19 05:30:57 +00:00
Bill Yi
e7038aa1a3
Merge "Merge mainline-release 6664920 to master - DO NOT MERGE" am: 94c8353286
...
Original change: https://android-review.googlesource.com/c/platform/packages/apps/Settings/+/1430073
Change-Id: I5307234cb034d2f255307cbcff5ebee1a470d79b
2020-09-19 05:23:11 +00:00
Bill Yi
5d7f242557
Merge mainline-release 6664920 to master - DO NOT MERGE am: 48a84d855f
...
Original change: https://android-review.googlesource.com/c/platform/packages/apps/Settings/+/1430073
Change-Id: I0c107d09b4793a6c16b86a559bebc1a5e92e6e96
2020-09-19 05:22:34 +00:00
Bill Yi
635ee82942
[automerger skipped] Import translations. DO NOT MERGE ANYWHERE am: 1d033b41dc
-s ours am: 46678afcad
-s ours am: 420fdf0a89
-s ours
...
am skip reason: subject contains skip directive
Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Settings/+/12642138
Change-Id: If3376a63ff968e634973486749313b2cbc8d5e24
2020-09-19 03:07:35 +00:00
Bill Yi
2050329575
[automerger skipped] Import translations. DO NOT MERGE ANYWHERE am: 1d033b41dc
-s ours am: 15c3938b96
-s ours am: 014c717f5c
-s ours
...
am skip reason: subject contains skip directive
Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Settings/+/12642138
Change-Id: I48edae6651653acfc9dd3c33350505b1477c1de4
2020-09-19 02:57:13 +00:00
Bill Yi
420fdf0a89
[automerger skipped] Import translations. DO NOT MERGE ANYWHERE am: 1d033b41dc
-s ours am: 46678afcad
-s ours
...
am skip reason: subject contains skip directive
Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Settings/+/12642138
Change-Id: I6292129f399ab3e9d68176c73be4e98902028b70
2020-09-19 02:27:11 +00:00
Bill Yi
014c717f5c
[automerger skipped] Import translations. DO NOT MERGE ANYWHERE am: 1d033b41dc
-s ours am: 15c3938b96
-s ours
...
am skip reason: subject contains skip directive
Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Settings/+/12642138
Change-Id: I3613bf5148830f5ce78e4bfd7ce1d286fa23cb16
2020-09-19 02:25:55 +00:00
Bill Yi
5693122b31
Import translations. DO NOT MERGE ANYWHERE
...
Auto-generated-cl: translation import
Change-Id: Ie970dcf51fc443cc9d45c5f4ab89c9713f1b778c
2020-09-18 18:49:59 -07:00
Bill Yi
46678afcad
[automerger skipped] Import translations. DO NOT MERGE ANYWHERE am: 1d033b41dc
-s ours
...
am skip reason: subject contains skip directive
Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Settings/+/12642138
Change-Id: I75912992dfd44e72c3e8daf2721be656dbc114b9
2020-09-19 01:49:34 +00:00
Bill Yi
15c3938b96
[automerger skipped] Import translations. DO NOT MERGE ANYWHERE am: 1d033b41dc
-s ours
...
am skip reason: subject contains skip directive
Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Settings/+/12642138
Change-Id: I8a8a7ada0c4b307ec2088f21037fd7e3696d5684
2020-09-19 01:47:35 +00:00
Bill Yi
9a992c04fd
Import translations. DO NOT MERGE ANYWHERE
...
Auto-generated-cl: translation import
Change-Id: Ib5f2340e20be80d9d8e89858af8eb042c7ba444f
2020-09-18 18:12:05 -07:00
Bill Yi
6fbc044374
Import translations. DO NOT MERGE ANYWHERE
...
Auto-generated-cl: translation import
Change-Id: I05ee4abf21aa97acf518dbb3f7f1fec36a70445c
2020-09-18 17:33:58 -07:00
Bill Yi
1d033b41dc
Import translations. DO NOT MERGE ANYWHERE
...
Auto-generated-cl: translation import
Change-Id: I2553421a8fef1330908cba8afc10013ce6331778
2020-09-18 16:54:49 -07:00
Jeremy
1885f027d8
[Testing] AndroidJunit Enhanced4gLteSliceHelperTest
...
Test: atest -c Enhanced4gLteSliceHelperTest
Change-Id: I548ffe60f00cea76d0c4af33ca4ec6f38cbf6247
2020-09-18 15:30:41 -04:00
Bill Yi
94c8353286
Merge "Merge mainline-release 6664920 to master - DO NOT MERGE"
2020-09-18 18:47:53 +00:00
Lyn Han
245a6aff75
Update global bubble settings mp4
...
Fixes: 160797563
Test: compiles with updated overflow button icon
Change-Id: Iaa1319bfb6f111b7675f5682258a8d282c27c6ce
2020-09-18 15:08:57 +00:00