main.xml revision 97bdbe13fc48640babe6c1ce270660476f04c3df
1<?xml version="1.0" encoding="utf-8"?>
2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3    android:orientation="vertical"
4    android:layout_width="fill_parent"
5    android:layout_height="fill_parent"
6    >
7<TextView
8    android:layout_width="fill_parent"
9    android:layout_height="wrap_content"
10    android:text="@string/hello"
11    />
12<Button
13    android:id="@+id/java_player"
14    android:text="@string/java_player"
15    android:layout_width="fill_parent"
16    android:layout_height="wrap_content"
17    />
18<Button
19    android:id="@+id/openmaxal_player"
20    android:text="@string/openmaxal_player"
21    android:layout_width="fill_parent"
22    android:layout_height="wrap_content"
23    />
24<SurfaceView
25    android:id="@+id/java_surface"
26    android:layout_width="400px"
27    android:layout_height="224px"
28    />
29<SurfaceView
30    android:id="@+id/openmaxal_surface"
31    android:layout_width="400px"
32    android:layout_height="224px"
33    />
34</LinearLayout>
35