1<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
2    android:layout_width="match_parent"
3    android:layout_height="match_parent" >
4
5    <LinearLayout
6        android:id="@+id/id_declared_in_layout"
7        android:layout_width="wrap_content"
8        android:layout_height="wrap_content"
9        android:orientation="vertical" >
10
11        <TextView
12            android:id="@+id/hello"
13            android:layout_width="wrap_content"
14            android:layout_height="wrap_content"
15            android:text="hello" />
16
17        <TextView
18            android:id="@+id/world"
19            android:layout_width="wrap_content"
20            android:layout_height="wrap_content"
21            android:text="world" />
22    </LinearLayout>
23
24</RelativeLayout>