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