Update theme submodule
[platform/upstream/gstreamer.git] / examples / tutorials / android-tutorial-2 / res / layout / main.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3     android:layout_width="match_parent"
4     android:layout_height="match_parent"
5     android:gravity="center_vertical"
6     android:orientation="vertical" >
7
8     <TextView
9         android:id="@+id/textview_message"
10         android:layout_width="match_parent"
11         android:layout_height="wrap_content"
12         android:layout_marginBottom="16dip"
13         android:gravity="center_horizontal" />
14
15     <LinearLayout
16         android:layout_width="match_parent"
17         android:layout_height="wrap_content"
18         android:gravity="center_horizontal"
19         android:orientation="horizontal" >
20
21         <ImageButton
22             android:id="@+id/button_play"
23             android:layout_width="wrap_content"
24             android:layout_height="wrap_content"
25             android:contentDescription="@string/button_play"
26             android:src="@android:drawable/ic_media_play"
27             android:text="@string/button_play" />
28
29         <ImageButton
30             android:id="@+id/button_stop"
31             android:layout_width="wrap_content"
32             android:layout_height="wrap_content"
33             android:contentDescription="@string/button_stop"
34             android:src="@android:drawable/ic_media_pause"
35             android:text="@string/button_stop" />
36     </LinearLayout>
37
38 </LinearLayout>