diff options
| author | 2022-03-31 14:17:59 -0700 | |
|---|---|---|
| committer | 2022-03-31 14:17:59 -0700 | |
| commit | fef49f5b9b1c96b05c8e51c753639e27a78de3e4 (patch) | |
| tree | 68d0a672d1f290b1ec918d284f93c4df786b932c | |
| parent | 44df60c3f9bb834d68391d83bd0159cd7c21ad2c (diff) | |
Clip media player to its bounds
Fixes: 224873875
Test: perfetto da house down!
Change-Id: I50601648cdc231cd5a5835afcd62eaa27e1eceb2
| -rw-r--r-- | packages/SystemUI/res/layout/media_session_view.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/SystemUI/res/layout/media_session_view.xml b/packages/SystemUI/res/layout/media_session_view.xml index e1f3eca3fd63..23d7211867ca 100644 --- a/packages/SystemUI/res/layout/media_session_view.xml +++ b/packages/SystemUI/res/layout/media_session_view.xml @@ -21,8 +21,8 @@ android:id="@+id/qs_media_controls" android:layout_width="match_parent" android:layout_height="wrap_content" - android:clipChildren="false" - android:clipToPadding="false" + android:clipChildren="true" + android:clipToPadding="true" android:gravity="center_horizontal|fill_vertical" android:forceHasOverlappingRendering="false" android:background="@drawable/qs_media_background" |