1 <?xml version="1.0" encoding="UTF-8"?> 2 <!-- 3 * Copyright (C) 2016 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 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 19 android:orientation="vertical" 20 android:layout_width="match_parent" 21 android:layout_height="match_parent"> 22 <LinearLayout 23 android:orientation="horizontal" 24 android:layout_width="match_parent" 25 android:layout_height="100dp"> 26 <View 27 android:layout_width="match_parent" 28 android:layout_height="match_parent" 29 android:id="@+id/view1"/> 30 </LinearLayout> 31 32 <LinearLayout 33 android:orientation="horizontal" 34 android:padding="@dimen/insetAll" 35 android:layout_width="match_parent" 36 android:layout_height="100dp"> 37 <View 38 android:layout_width="match_parent" 39 android:layout_height="match_parent" 40 android:id="@+id/view2"/> 41 </LinearLayout> 42 43 <LinearLayout 44 android:orientation="horizontal" 45 android:paddingLeft="@dimen/insetLeft" 46 android:paddingTop="@dimen/insetTop" 47 android:layout_width="match_parent" 48 android:layout_height="100dp"> 49 <View 50 android:layout_width="match_parent" 51 android:layout_height="match_parent" 52 android:id="@+id/view3"/> 53 </LinearLayout> 54 55 <LinearLayout 56 android:orientation="horizontal" 57 android:paddingRight="@dimen/insetRight" 58 android:paddingBottom="@dimen/insetBottom" 59 android:layout_width="match_parent" 60 android:layout_height="100dp"> 61 <View 62 android:layout_width="match_parent" 63 android:layout_height="match_parent" 64 android:id="@+id/view4"/> 65 </LinearLayout> 66 67 <LinearLayout 68 android:orientation="horizontal" 69 android:paddingLeft="@dimen/insetLeft" 70 android:paddingTop="@dimen/insetTop" 71 android:paddingRight="@dimen/insetRight" 72 android:paddingBottom="@dimen/insetBottom" 73 android:layout_width="match_parent" 74 android:layout_height="100dp"> 75 <View 76 android:layout_width="match_parent" 77 android:layout_height="match_parent" 78 android:id="@+id/view5"/> 79 </LinearLayout> 80 81 82 <LinearLayout 83 android:orientation="horizontal" 84 android:paddingHorizontal="@dimen/insetHorizontal" 85 android:layout_width="match_parent" 86 android:layout_height="100dp"> 87 <View 88 android:layout_width="match_parent" 89 android:layout_height="match_parent" 90 android:id="@+id/view6"/> 91 </LinearLayout> 92 93 <LinearLayout 94 android:orientation="horizontal" 95 android:paddingVertical="@dimen/insetVertical" 96 android:layout_width="match_parent" 97 android:layout_height="100dp"> 98 <View 99 android:layout_width="match_parent" 100 android:layout_height="match_parent" 101 android:id="@+id/view7"/> 102 </LinearLayout> 103 104 <LinearLayout 105 android:orientation="horizontal" 106 android:paddingHorizontal="@dimen/insetHorizontal" 107 android:paddingVertical="@dimen/insetVertical" 108 android:layout_width="match_parent" 109 android:layout_height="100dp"> 110 <View 111 android:layout_width="match_parent" 112 android:layout_height="match_parent" 113 android:id="@+id/view8"/> 114 </LinearLayout> 115 116 <LinearLayout 117 android:orientation="horizontal" 118 android:paddingHorizontal="@dimen/insetHorizontal" 119 android:paddingVertical="@dimen/insetVertical" 120 android:paddingLeft="0dp" 121 android:paddingTop="0dp" 122 android:paddingRight="0dp" 123 android:paddingBottom="0dp" 124 android:layout_width="match_parent" 125 android:layout_height="100dp"> 126 <View 127 android:layout_width="match_parent" 128 android:layout_height="match_parent" 129 android:id="@+id/view9"/> 130 </LinearLayout> 131 132 <LinearLayout 133 android:orientation="horizontal" 134 android:padding="@dimen/insetAll" 135 android:paddingHorizontal="@dimen/insetHorizontal" 136 android:paddingVertical="@dimen/insetVertical" 137 android:paddingLeft="@dimen/insetLeft" 138 android:paddingTop="@dimen/insetTop" 139 android:paddingRight="@dimen/insetRight" 140 android:paddingBottom="@dimen/insetBottom" 141 android:layout_width="match_parent" 142 android:layout_height="100dp"> 143 <View 144 android:layout_width="match_parent" 145 android:layout_height="match_parent" 146 android:id="@+id/view10"/> 147 </LinearLayout> 148 149 <LinearLayout 150 android:orientation="horizontal" 151 android:padding="@dimen/insetAll" 152 android:paddingStart="@dimen/insetStart" 153 android:paddingEnd="@dimen/insetEnd" 154 android:layout_width="match_parent" 155 android:layout_height="100dp"> 156 <View 157 android:layout_width="match_parent" 158 android:layout_height="match_parent" 159 android:id="@+id/view11"/> 160 </LinearLayout> 161 162 <LinearLayout 163 android:orientation="horizontal" 164 android:paddingHorizontal="@dimen/insetHorizontal" 165 android:paddingStart="@dimen/insetStart" 166 android:paddingEnd="@dimen/insetEnd" 167 android:layout_width="match_parent" 168 android:layout_height="100dp"> 169 <View 170 android:layout_width="match_parent" 171 android:layout_height="match_parent" 172 android:id="@+id/view12"/> 173 </LinearLayout> 174 175 176 </LinearLayout> 177 178