Project

General

Profile

Download (1.19 KB) Statistics
| Branch: | Revision:

examples / src / main / res / layout / deferredjoblayout.xml @ 304cdff5

1 887e1853 Leszek Koltunski
<?xml version="1.0" encoding="utf-8"?>
2
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3
    android:layout_width="fill_parent"
4
    android:layout_height="fill_parent"
5
    android:orientation="vertical" >
6
7
    <org.distorted.examples.deferredjob.DeferredJobSurfaceView
8
        android:id="@+id/deferredjobSurfaceView"
9
        android:layout_width="fill_parent"
10
        android:layout_height="0dp"
11
        android:layout_weight="1" />
12
13
    <LinearLayout
14
        android:orientation="horizontal"
15
        android:layout_width="match_parent"
16
        android:layout_height="wrap_content">
17
18 bf3b5480 Leszek Koltunski
        <Button
19 887e1853 Leszek Koltunski
            android:layout_width="wrap_content"
20
            android:layout_height="match_parent"
21 bf3b5480 Leszek Koltunski
            android:id="@+id/deferredjobButton0"
22 304cdff5 Leszek Koltunski
            android:text="@string/rotate_left"
23 887e1853 Leszek Koltunski
            android:onClick="onClick"
24 bf3b5480 Leszek Koltunski
            android:layout_weight="1"/>
25
        <Button
26 887e1853 Leszek Koltunski
            android:layout_width="wrap_content"
27
            android:layout_height="match_parent"
28 bf3b5480 Leszek Koltunski
            android:id="@+id/deferredjobButton1"
29 304cdff5 Leszek Koltunski
            android:text="@string/rotate_right"
30 887e1853 Leszek Koltunski
            android:onClick="onClick"
31 bf3b5480 Leszek Koltunski
            android:layout_weight="1"/>
32 887e1853 Leszek Koltunski
33
    </LinearLayout>
34
35
</LinearLayout>