1<?xml version="1.0" encoding="utf-8"?> 2<!-- Copyright (C) 2024 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<!-- TODO(b/379776735): remove this file after use_material3 flag is launched. --> 18<layer-list xmlns:android="http://schemas.android.com/apk/res/android" > 19 <!-- Panel shadow --> 20 <item> 21 <shape 22 xmlns:android="http://schemas.android.com/apk/res/android" 23 android:shape="rectangle" 24 android:tint="?android:attr/colorBackgroundFloating"> 25 <stroke android:width="2dp" android:color="#3C4043" /> 26 <solid android:color="#5F6368" /> 27 <corners 28 android:topRightRadius="@dimen/material_round_radius" 29 android:topLeftRadius="@dimen/material_round_radius" 30 android:bottomRightRadius="@dimen/material_round_radius" 31 android:bottomLeftRadius="@dimen/material_round_radius"/> 32 </shape> 33 </item> 34 <!-- Panel surface --> 35 <item android:bottom="2dp"> 36 <shape 37 xmlns:android="http://schemas.android.com/apk/res/android" 38 android:shape="rectangle" 39 android:tint="?android:attr/colorBackgroundFloating"> 40 <corners 41 android:topRightRadius="@dimen/material_round_radius" 42 android:topLeftRadius="@dimen/material_round_radius" 43 android:bottomRightRadius="@dimen/material_round_radius" 44 android:bottomLeftRadius="@dimen/material_round_radius"/> 45 </shape> 46 </item> 47</layer-list> 48