vector_drawable25.xml revision 4fcaa70c2362e58a3fb30d140f0a0eeda8e35b44
1<!--
2 Copyright (C) 2015 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        xmlns:auto="http://schemas.android.com/apk/res-auto"
18        auto:height="64dp"
19        auto:width="64dp"
20        auto:viewportHeight="400"
21        auto:viewportWidth="400" >
22
23    <group
24        auto:name="FirstLevelGroup"
25        auto:translateX="100.0"
26        auto:translateY="0.0" >
27        <group
28            auto:name="SecondLevelGroup1"
29            auto:translateX="-100.0"
30            auto:translateY="50.0" >
31            <path
32                auto:fillColor="#FF00FF00"
33                auto:pathData="@string/rectangle200" />
34
35            <group
36                auto:name="ThridLevelGroup1"
37                auto:translateX="-100.0"
38                auto:translateY="50.0" >
39                <path
40                    auto:fillColor="#FF0000FF"
41                    auto:pathData="@string/rectangle200" />
42            </group>
43            <group
44                auto:name="ThridLevelGroup2"
45                auto:translateX="100.0"
46                auto:translateY="50.0" >
47                <path
48                    auto:fillColor="#FF000000"
49                    auto:pathData="@string/rectangle200" />
50            </group>
51        </group>
52        <group
53            auto:name="SecondLevelGroup2"
54            auto:translateX="100.0"
55            auto:translateY="50.0" >
56            <path
57                auto:fillColor="#FF0000FF"
58                auto:pathData="@string/rectangle200" />
59
60            <group
61                auto:name="ThridLevelGroup3"
62                auto:translateX="-100.0"
63                auto:translateY="50.0" >
64                <path
65                    auto:fillColor="#FFFF0000"
66                    auto:pathData="@string/rectangle200" />
67            </group>
68            <group
69                auto:name="ThridLevelGroup4"
70                auto:translateX="100.0"
71                auto:translateY="50.0" >
72                <path
73                    auto:fillColor="#FF00FF00"
74                    auto:pathData="@string/rectangle200" />
75            </group>
76        </group>
77
78        <path
79            auto:fillColor="#FFFF0000"
80            auto:pathData="@string/rectangle200" />
81    </group>
82
83</vector>