diff options
author | 2021-05-25 15:52:16 -0400 | |
---|---|---|
committer | 2021-05-25 15:52:18 -0400 | |
commit | 204a90480db657bb24f2073ddd51939f758f91c0 (patch) | |
tree | 0fe1c4da630954640f5c352684b3719e48cf74ae | |
parent | 04b48353d76cabea95e54e97f871699ed78faf4d (diff) |
Fix weird ripple circle in the volume SeekBar.
The background is provided by the progressDrawable's background layer, so we can set the regular bg to null to hide the ripple.
Fixes: 188251902
Test: no more weird ripple
Change-Id: I9fee9cb66cb78e50f82b03a292fddcb2a0c40e88
-rw-r--r-- | packages/SystemUI/res/layout/volume_dialog_row.xml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/SystemUI/res/layout/volume_dialog_row.xml b/packages/SystemUI/res/layout/volume_dialog_row.xml index 4b5a008b896b..50ddaf7dbe86 100644 --- a/packages/SystemUI/res/layout/volume_dialog_row.xml +++ b/packages/SystemUI/res/layout/volume_dialog_row.xml @@ -57,6 +57,7 @@ android:thumb="@null" android:splitTrack="false" android:progressDrawable="@drawable/volume_row_seekbar" + android:background="@null" android:layoutDirection="ltr" android:rotation="270" /> </FrameLayout> |