Added full directory structure to the repo.
[hteague_pubgit.git] / workspace / LinearLayout / res / layout / main.xml
blob649145299d1221166301b954f8ea507ff5f33cea
1 <?xml version="1.0" encoding="utf-8"?>
2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3     android:orientation="vertical"
4     android:layout_width="fill_parent"
5     android:layout_height="fill_parent">
7     <LinearLayout
8         android:orientation="horizontal"
9         android:layout_width="fill_parent"
10         android:layout_height="fill_parent"
11         android:layout_weight="1">
12         
13         <TextView
14             android:text="red"
15             android:gravity="center_horizontal"
16             android:background="#aa0000"
17             android:layout_width="wrap_content"
18             android:layout_height="fill_parent"
19             android:layout_weight="1"/>
20         
21         <TextView
22             android:text="green"
23             android:gravity="center_horizontal"
24             android:background="#00aa00"
25             android:layout_width="wrap_content"
26             android:layout_height="fill_parent"
27             android:layout_weight="1"/>
28         
29         <TextView
30             android:text="blue"
31             android:gravity="center_horizontal"
32             android:background="#0000aa"
33             android:layout_width="wrap_content"
34             android:layout_height="fill_parent"
35             android:layout_weight="1"/>
36         
37         <TextView
38             android:text="yellow"
39             android:gravity="center_horizontal"
40             android:background="#aaaa00"
41             android:layout_width="wrap_content"
42             android:layout_height="fill_parent"
43             android:layout_weight="1"/>
44                 
45     </LinearLayout>
46         
47     <LinearLayout
48         android:orientation="vertical"
49         android:layout_width="fill_parent"
50         android:layout_height="fill_parent"
51         android:layout_weight="1">
52         
53         <TextView
54             android:text="row one"
55             android:textSize="15pt"
56             android:layout_width="fill_parent"
57             android:layout_height="wrap_content"
58             android:layout_weight="1"/>
59         
60         <TextView
61             android:text="row two"
62             android:textSize="15pt"
63             android:layout_width="fill_parent"
64             android:layout_height="wrap_content"
65             android:layout_weight="1"/>
66         
67         <TextView
68             android:text="row three"
69             android:textSize="15pt"
70             android:layout_width="fill_parent"
71             android:layout_height="wrap_content"
72             android:layout_weight="1"/>
73         
74         <TextView
75             android:text="row four"
76             android:textSize="15pt"
77             android:layout_width="fill_parent"
78             android:layout_height="wrap_content"
79             android:layout_weight="1"/>
80         
81     </LinearLayout>
82         
83 </LinearLayout>