Project

General

Profile

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

examples / src / main / res / layout / singlemeshlayout.xml @ 90940caf

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/singlemeshButton0"
22
            android:text="@string/color_red"
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/singlemeshButton1"
29
            android:text="@string/color_green"
30
            android:onClick="onClick"
31
            android:layout_weight="1"/>
32

    
33
    </LinearLayout>
34

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