1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3 ~ Copyright (C) 2021 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 18<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> 19 <item android:id="@android:id/background" 20 android:width="@dimen/bluetooth_bonded_device_button_size" 21 android:height="@dimen/bluetooth_bonded_device_button_size"> 22 <shape android:shape="rectangle"> 23 <solid android:color="@color/bluetooth_bonded_device_background" /> 24 <corners android:radius="@dimen/bluetooth_bonded_device_button_radius" /> 25 </shape> 26 </item> 27 <item android:width="@dimen/bluetooth_bonded_device_button_size" 28 android:height="@dimen/bluetooth_bonded_device_button_size" 29 android:drawable="@drawable/bluetooth_bonded_device_rotary_background"/> 30 <item 31 android:start="@dimen/bluetooth_bonded_device_foreground_icon_inset" 32 android:top="@dimen/bluetooth_bonded_device_foreground_icon_inset" 33 android:end="@dimen/bluetooth_bonded_device_foreground_icon_inset" 34 android:bottom="@dimen/bluetooth_bonded_device_foreground_icon_inset"> 35 <vector 36 android:width="@dimen/icon_size" 37 android:height="@dimen/icon_size" 38 android:viewportHeight="24.0" 39 android:viewportWidth="24.0"> 40 <path 41 android:fillColor="@color/bluetooth_bonded_device_foreground" 42 android:pathData="M17.71,7.71L12,2h-1v7.59L6.41,5 5,6.41 10.59,12 5,17.59 6.41,19 11,14.41L11,22h1l5.71,-5.71 -4.3,-4.29 4.3,-4.29zM13,5.83l1.88,1.88L13,9.59L13,5.83zM14.88,16.29L13,18.17v-3.76l1.88,1.88z"/> 43 <path 44 android:fillColor="@color/bluetooth_bonded_device_foreground" 45 android:pathData="M5,12m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/> 46 <path 47 android:fillColor="@color/bluetooth_bonded_device_foreground" 48 android:pathData="M19,12m-1.5,0a1.5,1.5 0,1 1,3 0a1.5,1.5 0,1 1,-3 0"/> 49 </vector> 50 </item> 51</layer-list>