Project

General

Profile

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

examples / src / main / res / layout / savelayout.xml @ a2cb31e9

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.save.SaveSurfaceView
8
        android:id="@+id/saveSurfaceView"
9
        android:layout_width="fill_parent"
10
        android:layout_height="0dp"
11
        android:layout_weight="0.85" />
12

    
13
    <LinearLayout
14
        android:orientation="horizontal"
15
        android:layout_width="match_parent"
16
        android:layout_height="wrap_content"
17
        android:gravity="bottom"
18
        android:layout_weight="0.03">
19

    
20
        <Button
21
            android:id="@+id/saveButton"
22
            android:layout_width="132dp"
23
            android:layout_height="wrap_content"
24
            android:gravity="center_vertical|center"
25
            android:text="@string/save"
26
            android:onClick="Save"
27
            android:textAppearance="?android:attr/textAppearanceMedium"
28
            android:layout_gravity="center_vertical"/>
29

    
30
        <SeekBar
31
            android:layout_width="fill_parent"
32
            android:layout_height="wrap_content"
33
            android:id="@+id/saveSeekBar"
34
            android:layout_gravity="center_vertical"
35
            android:layout_margin="5dp"/>
36

    
37
    </LinearLayout>
38

    
39
</LinearLayout>
(15-15/18)