1 <?xml version="1.0" encoding="utf-8"?> 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 android:layout_width="match_parent" 4 android:layout_height="match_parent" 5 android:orientation="vertical" 6 android:weightSum="1" > 7 8 <LinearLayout 9 android:layout_width="match_parent" 10 android:layout_height="0dp" 11 android:layout_weight="0.2" 12 android:background="@android:color/holo_blue_light" 13 android:orientation="horizontal" 14 android:weightSum="1" > 15 16 <View 17 android:id="@+id/bview1" 18 android:layout_width="0dp" 19 android:layout_height="wrap_content" 20 android:layout_margin="10dp" 21 android:layout_weight="0.5" 22 android:background="@android:color/darker_gray" /> 23 24 <View 25 android:id="@+id/bview2" 26 android:layout_width="0dp" 27 android:layout_height="wrap_content" 28 android:layout_margin="10dp" 29 android:layout_weight="0.5" 30 android:background="@android:color/darker_gray" /> 31 </LinearLayout> 32 33 <LinearLayout 34 android:layout_width="match_parent" 35 android:layout_height="0dp" 36 android:layout_weight="0.7" 37 android:background="@android:color/holo_orange_light" 38 android:orientation="horizontal" 39 android:weightSum="1" > 40 41 <LinearLayout 42 android:layout_width="0dp" 43 android:layout_height="match_parent" 44 android:layout_margin="10dp" 45 android:layout_weight="0.3" 46 android:background="@android:color/holo_red_dark" 47 android:orientation="vertical" 48 android:weightSum="1" > 49 50 <View 51 android:id="@+id/bview3" 52 android:layout_width="match_parent" 53 android:layout_height="0dp" 54 android:layout_margin="10dp" 55 android:layout_weight="0.3" 56 android:background="@android:color/darker_gray" /> 57 58 <View 59 android:id="@+id/bview4" 60 android:layout_width="match_parent" 61 android:layout_height="0dp" 62 android:layout_margin="10dp" 63 android:layout_weight="0.4" 64 android:background="@android:color/darker_gray" /> 65 66 <View 67 android:id="@+id/bview5" 68 android:layout_width="match_parent" 69 android:layout_height="0dp" 70 android:layout_margin="10dp" 71 android:layout_weight="0.3" 72 android:background="@android:color/darker_gray" /> 73 </LinearLayout> 74 75 <LinearLayout 76 android:layout_width="0dp" 77 android:layout_height="match_parent" 78 android:layout_margin="10dp" 79 android:layout_weight="0.3" 80 android:background="@android:color/holo_purple" 81 android:orientation="vertical" 82 android:weightSum="1" > 83 84 <View 85 android:id="@+id/bview6" 86 android:layout_width="match_parent" 87 android:layout_height="0dp" 88 android:layout_margin="10dp" 89 android:layout_weight="0.33" 90 android:background="@android:color/darker_gray" /> 91 92 <View 93 android:id="@+id/bview7" 94 android:layout_width="match_parent" 95 android:layout_height="0dp" 96 android:layout_margin="10dp" 97 android:layout_weight="0.33" 98 android:background="@android:color/darker_gray" /> 99 100 <View 101 android:id="@+id/bview8" 102 android:layout_width="match_parent" 103 android:layout_height="0dp" 104 android:layout_margin="10dp" 105 android:layout_weight="0.33" 106 android:background="@android:color/darker_gray" /> 107 </LinearLayout> 108 109 <LinearLayout 110 android:layout_width="0dp" 111 android:layout_height="match_parent" 112 android:layout_margin="10dp" 113 android:layout_weight="0.4" 114 android:background="@android:color/black" 115 android:orientation="vertical" 116 android:weightSum="1" > 117 118 <View 119 android:id="@+id/bview9" 120 android:layout_width="match_parent" 121 android:layout_height="0dp" 122 android:layout_margin="10dp" 123 android:layout_weight="0.4" 124 android:background="@android:color/darker_gray" /> 125 126 <View 127 android:id="@+id/bview10" 128 android:layout_width="match_parent" 129 android:layout_height="0dp" 130 android:layout_margin="10dp" 131 android:layout_weight="0.6" 132 android:background="@android:color/darker_gray" /> 133 </LinearLayout> 134 </LinearLayout> 135 136 <LinearLayout 137 android:layout_width="match_parent" 138 android:layout_height="0dp" 139 android:layout_weight="0.2" 140 android:background="@android:color/holo_green_light" 141 android:orientation="horizontal" 142 android:weightSum="1" > 143 144 <View 145 android:id="@+id/view11" 146 android:layout_width="0dp" 147 android:layout_height="wrap_content" 148 android:layout_margin="10dp" 149 android:layout_weight="0.3" 150 android:background="@android:color/darker_gray" /> 151 152 <View 153 android:id="@+id/view12" 154 android:layout_width="0dp" 155 android:layout_height="wrap_content" 156 android:layout_margin="10dp" 157 android:layout_weight="0.4" 158 android:background="@android:color/darker_gray" /> 159 160 <View 161 android:id="@+id/view13" 162 android:layout_width="0dp" 163 android:layout_height="wrap_content" 164 android:layout_margin="10dp" 165 android:layout_weight="0.3" 166 android:background="@android:color/darker_gray" /> 167 </LinearLayout> 168 169 </LinearLayout>