1<?xml version="1.0" encoding="utf-8"?><!-- 2 ~ Copyright (C) 2025 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 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 ~ See the License for the specific language governing permissions and 13 ~ limitations under the License. 14 --> 15 16<!-- SeekBar drawable for the rear display cancellation slider. --> 17<layer-list xmlns:android="http://schemas.android.com/apk/res/android" 18 xmlns:androidprv="http://schemas.android.com/apk/prv/res/android" 19 android:paddingMode="stack"> 20 <item android:gravity="center" 21 android:height="2dp" 22 android:width="@dimen/rear_display_progress_width"> 23 <shape android:shape="rectangle"> 24 <solid android:color="?android:attr/colorAccent"/> 25 </shape> 26 </item> 27 <item 28 android:id="@android:id/progress" 29 android:gravity="center_vertical|fill_horizontal"> 30 <com.android.systemui.util.RoundedCornerProgressDrawable android:drawable="@drawable/rear_display_dialog_seekbar_progress" /> 31 </item> 32</layer-list> 33