1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3 ~ Copyright (C) 2017 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<vector 19 xmlns:android="http://schemas.android.com/apk/res/android" 20 android:height="24dp" 21 android:name="root" 22 android:tint="?attr/colorControlNormal" 23 android:viewportHeight="24" 24 android:viewportWidth="24" 25 android:width="24dp"> 26 27 <group 28 android:name="progressRoot" 29 android:translateX="12.0" 30 android:translateY="12.0"> 31 <path 32 android:fillColor="#00000000" 33 android:name="progressBar" 34 android:pathData="M0, 0 m 0, -11 a 11,11 0 1,1 0,22 a 11,11 0 1,1 0,-22" 35 android:strokeColor="@android:color/white" 36 android:strokeLineCap="square" 37 android:strokeLineJoin="miter" 38 android:strokeWidth="2" 39 android:trimPathEnd="0" 40 android:trimPathOffset="0" 41 android:trimPathStart="0"/> 42 </group> 43 <group 44 android:name="hdRoot" 45 android:pivotX="12" 46 android:pivotY="12"> 47 <clip-path 48 android:name="hdMask" 49 android:pathData="M12, 12 m 0, -9 a 9,9 0 1,1 0,18 a 9,9 0 1,1 0,-18"/> 50 <path 51 android:fillColor="@android:color/white" 52 android:name="hd" 53 android:pathData="M19,3L5,3c-1.11,0 -2,0.9 -2,2v14c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM11,15L9.5,15v-2h-2v2L6,15L6,9h1.5v2.5h2L9.5,9L11,9v6zM13,9h4c0.55,0 1,0.45 1,1v4c0,0.55 -0.45,1 -1,1h-4L13,9zM14.5,13.5h2v-3h-2v3z"/> 54 </group> 55 56</vector> 57