1<?xml version="1.0" encoding="utf-8"?>
2<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
3    android:id="@+id/RelativeLayout1"
4    android:layout_width="fill_parent"
5    android:layout_height="fill_parent" >
6
7    <LinearLayout
8        android:id="@+id/layout1"
9        android:layout_width="wrap_content"
10        android:layout_height="wrap_content"
11        android:gravity="center"
12        android:orientation="vertical" >
13
14        <ImageView
15            android:layout_width="wrap_content"
16            android:layout_height="wrap_content"
17            android:src="@drawable/ic_launcher" />
18
19        <TextView
20            android:layout_width="wrap_content"
21            android:layout_height="wrap_content"
22            android:text="Hello World" />
23    </LinearLayout>
24
25    <LinearLayout
26        android:id="@+id/layout2"
27        android:layout_width="wrap_content"
28        android:layout_height="wrap_content"
29        android:layout_below="@+id/layout1"
30        android:gravity="center"
31        android:orientation="vertical" >
32
33        <TextView
34            android:id="@+id/textView2"
35            android:layout_width="wrap_content"
36            android:layout_height="wrap_content"
37            android:text="Hello World" />
38
39        <ImageView
40            android:layout_width="wrap_content"
41            android:layout_height="wrap_content"
42            android:src="@drawable/ic_launcher" />
43    </LinearLayout>
44
45    <LinearLayout
46        android:id="@+id/layout3"
47        android:layout_width="wrap_content"
48        android:layout_height="wrap_content"
49        android:layout_below="@+id/layout2"
50        android:gravity="center"
51        android:orientation="horizontal" >
52
53        <ImageView
54            android:layout_width="wrap_content"
55            android:layout_height="wrap_content"
56            android:src="@drawable/ic_launcher" />
57
58        <TextView
59            android:layout_width="wrap_content"
60            android:layout_height="wrap_content"
61            android:text="Hello World" />
62    </LinearLayout>
63
64    <LinearLayout
65        android:id="@+id/layout4"
66        android:layout_width="wrap_content"
67        android:layout_height="wrap_content"
68        android:layout_below="@+id/layout3"
69        android:gravity="center"
70        android:orientation="horizontal" >
71
72        <TextView
73            android:layout_width="wrap_content"
74            android:layout_height="wrap_content"
75            android:text="Hello World" />
76
77        <ImageView
78            android:layout_width="wrap_content"
79            android:layout_height="wrap_content"
80            android:src="@drawable/ic_launcher" />
81    </LinearLayout>
82
83</RelativeLayout>
84