1<?xml version="1.0" encoding="utf-8"?><!-- 2 ~ Copyright (C) 2021 The Android Open Source Project 3 ~ 4 ~ Licensed under the Apache License, Version 2.0 (the "License"); 5 ~ you may not use this file except in compliance with the License. 6 ~ You may obtain a copy of the License at 7 ~ 8 ~ http://www.apache.org/licenses/LICENSE-2.0 9 ~ 10 ~ Unless required by applicable law or agreed to in writing, software 11 ~ distributed under the License is distributed on an "AS IS" BASIS, 12 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 ~ See the License for the specific language governing permissions and 14 ~ limitations under the License. 15 --> 16 17<ConstraintSet xmlns:android="http://schemas.android.com/apk/res/android" 18 xmlns:app="http://schemas.android.com/apk/res-auto" 19 android:id="@+id/large_screen_header_constraint"> 20 21 <Constraint android:id="@+id/clock"> 22 <Layout 23 android:layout_width="wrap_content" 24 android:layout_height="0dp" 25 app:layout_constraintBottom_toBottomOf="parent" 26 app:layout_constraintStart_toEndOf="@id/begin_guide" 27 app:layout_constraintTop_toTopOf="parent" /> 28 <PropertySet android:alpha="1" /> 29 </Constraint> 30 31 <Constraint android:id="@+id/date"> 32 <Layout 33 android:layout_width="wrap_content" 34 android:layout_height="0dp" 35 android:layout_marginStart="8dp" 36 app:layout_constraintBottom_toBottomOf="parent" 37 app:layout_constraintStart_toEndOf="@id/clock" 38 app:layout_constraintTop_toTopOf="parent" /> 39 <PropertySet android:alpha="1" /> 40 </Constraint> 41 42 <Constraint android:id="@+id/carrier_group"> 43 <Layout 44 android:layout_width="0dp" 45 android:layout_height="0dp" 46 android:layout_gravity="end|center_vertical" 47 app:layout_constraintBottom_toBottomOf="parent" 48 app:layout_constraintEnd_toStartOf="@id/shade_header_system_icons" 49 app:layout_constraintStart_toEndOf="@id/date" 50 app:layout_constraintTop_toTopOf="parent" 51 app:layout_constraintWidth_default="wrap" 52 app:layout_constraintWidth_min="48dp" /> 53 <PropertySet android:alpha="1" /> 54 </Constraint> 55 56 <Constraint android:id="@+id/shade_header_system_icons"> 57 <Layout 58 android:layout_width="wrap_content" 59 android:layout_height="wrap_content" 60 app:layout_constraintBottom_toBottomOf="parent" 61 app:layout_constraintEnd_toStartOf="@id/privacy_container" 62 app:layout_constraintTop_toTopOf="parent" 63 app:layout_constraintStart_toEndOf="@id/carrier_group"/> 64 <PropertySet android:alpha="1" /> 65 </Constraint> 66 67 <Constraint android:id="@+id/privacy_container"> 68 <Layout 69 android:layout_width="wrap_content" 70 android:layout_height="@dimen/large_screen_shade_header_min_height" 71 app:layout_constraintBottom_toBottomOf="parent" 72 app:layout_constraintEnd_toStartOf="@id/end_guide" 73 app:layout_constraintTop_toTopOf="parent" /> 74 </Constraint> 75</ConstraintSet>