1<?xml version="1.0" encoding="UTF-8" ?> 2<!-- 3 ~ Copyright (C) 2020 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 19 xmlns:android="http://schemas.android.com/apk/res/android" 20 xmlns:aapt="http://schemas.android.com/aapt"> 21 <item android:gravity="center" 22 android:width="@dimen/system_bar_icon_drawing_size" 23 android:height="@dimen/system_bar_icon_drawing_size"> 24 <aapt:attr name="android:drawable"> 25 <shape android:shape="oval"> 26 <size 27 android:width="@dimen/system_bar_icon_drawing_size" 28 android:height="@dimen/system_bar_icon_drawing_size"/> 29 <solid 30 android:color="@color/hvac_temperature_adjust_button_color"/> 31 </shape> 32 </aapt:attr> 33 </item> 34 <item android:gravity="center" 35 android:width="@dimen/system_bar_icon_drawing_size" 36 android:height="@dimen/system_bar_icon_drawing_size"> 37 <aapt:attr name="android:drawable"> 38 <vector android:width="@dimen/system_bar_icon_drawing_size" 39 android:height="@dimen/system_bar_icon_drawing_size" 40 android:viewportWidth="24.0" 41 android:viewportHeight="24.0"> 42 <path 43 android:fillColor="@color/hvac_temperature_increase_arrow_color" 44 android:pathData="M10,17l5,-5 -5,-5v10z"/> 45 </vector> 46 </aapt:attr> 47 </item> 48 <item> 49 <aapt:attr name="android:drawable"> 50 <ripple android:color="?android:attr/colorControlHighlight"/> 51 </aapt:attr> 52 </item> 53</layer-list>