01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
|
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
xml
version
=
"1.0"
encoding
=
"utf-8"
?><
br
>
<
LinearLayout
xmlns:android
=
"http://schemas.android.com/apk/res/android"
style="@style/layout_full"<
br
>
android:orientation="vertical"><
br
>
<
LinearLayout
style="@style/layout_vertical"<
br
>
android:layout_weight="1"<
br
>
android:orientation="horizontal"><
br
>
<
View
style="@style/layout_horizontal"<
br
>
android:background="#aa0000"<
br
>
android:layout_weight="1"/><
br
>
<
View
style="@style/layout_horizontal"<
br
>
android:background="#00aa00"<
br
>
android:layout_weight="4"/><
br
>
<
View
style="@style/layout_horizontal"<
br
>
android:background="#0000aa"<
br
>
android:layout_weight="3"/><
br
>
<
View
style="@style/layout_horizontal"<
br
>
android:background="#aaaaaa"<
br
>
android:layout_weight="2"/> <
br
>
LinearLayout
> <
br
>
<
LinearLayout
style="@style/layout_vertical"<
br
>
android:layout_weight="2"<
br
>
android:orientation="vertical"><
br
>
<
View
style="@style/layout_vertical"<
br
>
android:background="#ffffff"<
br
>
android:layout_weight="4"/> <
br
>
<
View
style="@style/layout_vertical"<
br
>
android:background="#aa0000"<
br
>
android:layout_weight="3"/><
br
>
<
View
style="@style/layout_vertical"<
br
>
android:background="#00aa00"<
br
>
android:layout_weight="2"/><
br
>
<
View
style="@style/layout_vertical"<
br
>
android:background="#0000aa"<
br
>
android:layout_weight="1"/><
br
>
<
br
>
LinearLayout
><
br
>
LinearLayout
><
br
>
|
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
|
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
android:layout_width=
"fill_parent"
android:layout_height=
"fill_parent"
android:orientation=
"vertical"
>
android:layout_width=
"@dimen/width_76_80"
android:layout_height=
"@dimen/height_10_80"
android:background=
"#ffcccc"
android:layout_margin=
"@dimen/width_2_80"
/>
android:layout_width=
"fill_parent"
android:layout_height=
"fill_parent"
>
android:layout_width=
"@dimen/width_30_80"
|