• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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:name="rootGroup"
18        android:height="64dp"
19        android:width="64dp"
20        android:viewportHeight="600"
21        android:viewportWidth="600"
22        android:alpha="0.5" >
23
24    <group
25        android:name="rotationGroup"
26        android:pivotX="300.0"
27        android:pivotY="300.0"
28        android:rotation="45.0" >
29        <path
30            android:name="pie1"
31            android:fillColor="#00000000"
32            android:pathData="M300,70 a230,230 0 1,0 1,0 z"
33            android:strokeColor="#FF777777"
34            android:strokeWidth="70"
35            android:trimPathEnd=".75"
36            android:trimPathOffset="0"
37            android:trimPathStart="0" />
38        <path
39            android:name="v"
40            android:fillColor="#000000"
41            android:pathData="M300,70 l 0,-70 70,70 0,0 -70,70z" />
42
43        <group
44            android:name="translateToCenterGroup"
45            android:rotation="0.0"
46            android:translateX="200.0"
47            android:translateY="200.0" >
48            <group
49                android:name="rotationGroup2"
50                android:pivotX="0.0"
51                android:pivotY="0.0"
52                android:rotation="-45.0" >
53                <path
54                    android:name="twoLines1"
55                    android:pathData="@string/twoLinePathData"
56                    android:strokeColor="#FFFF0000"
57                    android:strokeWidth="20" />
58
59                <group
60                    android:name="translateGroupHalf"
61                    android:translateX="65.0"
62                    android:translateY="80.0" >
63                    <group
64                        android:name="rotationGroup3"
65                        android:pivotX="-65.0"
66                        android:pivotY="-80.0"
67                        android:rotation="-45.0" >
68                        <path
69                            android:name="twoLines2"
70                            android:fillColor="#FF00FF00"
71                            android:pathData="@string/twoLinePathData"
72                            android:strokeColor="#FF00FF00"
73                            android:strokeWidth="20" />
74
75                        <group
76                            android:name="translateGroup"
77                            android:translateX="65.0"
78                            android:translateY="80.0" >
79                            <group
80                                android:name="rotationGroupBlue"
81                                android:pivotX="-65.0"
82                                android:pivotY="-80.0"
83                                android:rotation="-45.0" >
84                                <path
85                                    android:name="twoLines3"
86                                    android:pathData="@string/twoLinePathData"
87                                    android:strokeColor="#FF0000FF"
88                                    android:strokeWidth="20" />
89                            </group>
90                        </group>
91                    </group>
92                </group>
93            </group>
94        </group>
95    </group>
96
97</vector>