1<?xml version="1.0" encoding="UTF-8"?> 2<!-- 3Copyright (C) 2019 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<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> 18 <item 19 android:id="@+id/back"> 20 <shape android:shape="oval"> 21 <solid 22 android:color="@android:color/transparent" /> 23 <size 24 android:height="48dp" 25 android:width="48dp"/> 26 <stroke android:width="1dp" 27 android:color="@color/notification_block_color"/> 28 </shape> 29 </item> 30 <item 31 android:id="@+id/fore" 32 android:gravity="center"> 33 <vector 34 android:height="24dp" 35 android:width="24dp" 36 android:viewportHeight="24" 37 android:viewportWidth="24"> 38 <path 39 android:fillColor="@color/notification_block_color" 40 android:pathData="M12.0,2.0C6.48,2.0 2.0,6.48 2.0,12.0s4.48,10.0 10.0,10.0 10.0,-4.48 10.0,-10.0S17.52,2.0 12.0,2.0zM4.0,12.0c0.0,-4.42 3.58,-8.0 8.0,-8.0 1.85,0.0 3.5,0.63 4.9,1.69L5.69,16.9C4.63,15.55 4.0,13.85 4.0,12.0zm8.0,8.0c-1.85,0.0 -3.55,-0.63 -4.9,-1.69L18.31,7.1C19.37,8.45 20.0,10.15 20.0,12.0c0.0,4.42 -3.58,8.0 -8.0,8.0z"/> 41 </vector> 42 </item> 43</layer-list>