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