diff options
| author | 2022-12-05 21:41:45 +0000 | |
|---|---|---|
| committer | 2022-12-05 21:41:45 +0000 | |
| commit | a29cd25a673f95f4242d8cefb4aeded24f2aa016 (patch) | |
| tree | 0522ae0e2b88a93ce146e8207f4cf8a90bac84a2 | |
| parent | 124b2a3b56831f4f5d4cf0cc4bed6bd4a277240b (diff) | |
Remove top and bottom parent constraint from album_art as it has a fixed height
As the height is fixed, the bottom constraint is not needed. With the new ConstraintLayout version they were causing a conflict that ended up making the media player with a smaller height.
Bug: 261475673
Test: QSMediaPlayerContent
Change-Id: Ia5373a624e1c597af8d4899f9743672df23c9c88
| -rw-r--r-- | packages/SystemUI/res/layout/media_session_view.xml | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/packages/SystemUI/res/layout/media_session_view.xml b/packages/SystemUI/res/layout/media_session_view.xml index 530db0d0304a..13c9a5ea05b1 100644 --- a/packages/SystemUI/res/layout/media_session_view.xml +++ b/packages/SystemUI/res/layout/media_session_view.xml @@ -35,7 +35,6 @@ android:layout_height="@dimen/qs_media_session_height_expanded" app:layout_constraintStart_toStartOf="parent" app:layout_constraintEnd_toEndOf="parent" - app:layout_constraintTop_toTopOf="parent" app:layout_constraintBottom_toBottomOf="parent" android:translationZ="0dp" android:scaleType="centerCrop" |