vector_drawable_progress_bar_small.xml revision 17cd4dfe3a05c2eddbcbc76066ff3b13fc3f2c8b
1<!--
2 Copyright (C) 2014 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<vector xmlns:android="http://schemas.android.com/apk/res/android"
17        android:height="16dp"
18        android:width="16dp"
19        android:viewportHeight="48"
20        android:viewportWidth="48"
21        android:tint="?attr/colorControlActivated">
22
23    <group
24        android:name="root"
25        android:translateX="24.0"
26        android:translateY="24.0" >
27        <path
28            android:name="progressBar"
29            android:fillColor="#00000000"
30            android:pathData="M0, 0 m 0, -19 a 19,19 0 1,1 0,38 a 19,19 0 1,1 0,-38"
31            android:strokeColor="@color/white"
32            android:strokeLineCap="square"
33            android:strokeLineJoin="miter"
34            android:strokeWidth="4"
35            android:trimPathEnd="0"
36            android:trimPathOffset="0"
37            android:trimPathStart="0" />
38    </group>
39
40</vector>