Project

General

Profile

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

examples / src / main / res / layout / singlemeshlayout.xml @ 9cbe58b0

1
<?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.singlemesh.SingleMeshSurfaceView
8
        android:id="@+id/singlemeshSurfaceView"
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
        <Button
19
            android:layout_width="wrap_content"
20
            android:layout_height="match_parent"
21
            android:id="@+id/singlemeshButtonLX"
22
            android:text="LX"
23
            android:onClick="onClick"
24
            android:layout_weight="1"/>
25
        <Button
26
            android:layout_width="wrap_content"
27
            android:layout_height="match_parent"
28
            android:id="@+id/singlemeshButtonRX"
29
            android:text="RX"
30
            android:onClick="onClick"
31
            android:layout_weight="1"/>
32
        <Button
33
            android:layout_width="wrap_content"
34
            android:layout_height="match_parent"
35
            android:id="@+id/singlemeshButtonLY"
36
            android:text="LY"
37
            android:onClick="onClick"
38
            android:layout_weight="1"/>
39
        <Button
40
            android:layout_width="wrap_content"
41
            android:layout_height="match_parent"
42
            android:id="@+id/singlemeshButtonRY"
43
            android:text="RY"
44
            android:onClick="onClick"
45
            android:layout_weight="1"/>
46
        <Button
47
            android:layout_width="wrap_content"
48
            android:layout_height="match_parent"
49
            android:id="@+id/singlemeshButtonLZ"
50
            android:text="LZ"
51
            android:onClick="onClick"
52
            android:layout_weight="1"/>
53
        <Button
54
            android:layout_width="wrap_content"
55
            android:layout_height="match_parent"
56
            android:id="@+id/singlemeshButtonRZ"
57
            android:text="RZ"
58
            android:onClick="onClick"
59
            android:layout_weight="1"/>
60

    
61
    </LinearLayout>
62

    
63
</LinearLayout>
(42-42/48)