Project

General

Profile

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

examples / src / main / res / layout / meshfilelayout.xml @ 42aa970f

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.meshfile.MeshFileSurfaceView
8
        android:id="@+id/meshfileSurfaceView"
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
        <Spinner
19
            android:layout_width="0dp"
20
            android:layout_height="wrap_content"
21
            android:layout_weight="0.5"
22
            android:id="@+id/meshfileSpinner"
23
            />
24

    
25
        <Button
26
            android:id="@+id/meshfileButton"
27
            android:layout_width="100dp"
28
            android:layout_height="fill_parent"
29
            android:gravity="center_vertical|center"
30
            android:text="@string/open"
31
            android:onClick="Open"
32
            android:textAppearance="?android:attr/textAppearanceMedium"
33
            android:layout_gravity="center_vertical"/>
34

    
35
    </LinearLayout>
36

    
37
</LinearLayout>
(29-29/49)