1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3 ~ Copyright (C) 2023 The Android Open Source Project 4 ~ 5 ~ Licensed under the Apache License, Version 2.0 (the "License"); 6 ~ you may not use this file except in compliance with the License. 7 ~ You may obtain a copy of the License at 8 ~ 9 ~ http://www.apache.org/licenses/LICENSE-2.0 10 ~ 11 ~ Unless required by applicable law or agreed to in writing, software 12 ~ distributed under the License is distributed on an "AS IS" BASIS, 13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 ~ See the License for the specific language governing permissions and 15 ~ limitations under the License 16 --> 17<ConstraintSet 18 xmlns:android="http://schemas.android.com/apk/res/android" 19 xmlns:app="http://schemas.android.com/apk/res-auto" 20 > 21 22 <Constraint 23 android:id="@+id/sizing_view" 24 android:layout_width="match_parent" 25 android:layout_height="@dimen/qs_media_session_height_collapsed" 26 /> 27 28 <Constraint 29 android:id="@+id/media_rec_title" 30 style="@style/MediaPlayer.Recommendation.Header" 31 app:layout_constraintStart_toStartOf="parent" 32 app:layout_constraintTop_toTopOf="parent"/> 33 34 <Constraint 35 android:id="@+id/media_cover1_container" 36 style="@style/MediaPlayer.Recommendation.AlbumContainer.Updated" 37 android:layout_height="@dimen/qs_media_rec_album_height_collapsed" 38 android:layout_marginEnd="@dimen/qs_media_info_spacing" 39 android:layout_marginStart="@dimen/qs_media_padding" 40 app:layout_constraintTop_toBottomOf="@+id/media_rec_title" 41 app:layout_constraintStart_toStartOf="parent" 42 app:layout_constraintEnd_toStartOf="@id/media_cover2_container"/> 43 44 45 <Constraint 46 android:id="@+id/media_cover2_container" 47 style="@style/MediaPlayer.Recommendation.AlbumContainer.Updated" 48 android:layout_height="@dimen/qs_media_rec_album_height_collapsed" 49 android:layout_marginEnd="@dimen/qs_media_info_spacing" 50 app:layout_constraintTop_toBottomOf="@+id/media_rec_title" 51 app:layout_constraintStart_toEndOf="@id/media_cover1_container" 52 app:layout_constraintEnd_toStartOf="@id/media_cover3_container"/> 53 54 <Constraint 55 android:id="@+id/media_cover3_container" 56 style="@style/MediaPlayer.Recommendation.AlbumContainer.Updated" 57 android:layout_height="@dimen/qs_media_rec_album_height_collapsed" 58 android:layout_marginEnd="@dimen/qs_media_padding" 59 app:layout_constraintTop_toBottomOf="@+id/media_rec_title" 60 app:layout_constraintStart_toEndOf="@id/media_cover2_container" 61 app:layout_constraintEnd_toEndOf="parent"/> 62 63 64</ConstraintSet> 65