Project

General

Profile

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

examples / src / main / res / layout / effects3dlayout.xml @ 5068fa06

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.effects3d.Effects3DSurfaceView
8
        android:id="@+id/effects3dSurfaceView"
9
        android:layout_width="fill_parent"
10
        android:layout_height="0dp"
11
        android:layout_weight="1" />
12

    
13
    <Button
14
        android:id="@+id/button1"
15
        android:layout_width="fill_parent"
16
        android:layout_height="wrap_content"
17
        android:onClick="Default"
18
        android:text="@string/Default" />
19

    
20
    <ScrollView
21
        android:id="@+id/matrix3dscrollView"
22
        android:layout_width="match_parent"
23
        android:layout_height="0dp"
24
        android:layout_weight="0.82" >
25

    
26
        <LinearLayout
27
            android:id="@+id/matrix3dlayout"
28
            android:layout_width="match_parent"
29
            android:layout_height="wrap_content"
30
            android:orientation="vertical" >
31
        </LinearLayout>
32

    
33
    </ScrollView>
34

    
35
</LinearLayout>
(6-6/17)