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