Project

General

Profile

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

examples / src / main / res / layout / deferredjoblayout.xml @ 887e1853

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

    
13
    <TextView
14
        android:layout_width="wrap_content"
15
        android:layout_height="wrap_content"
16
        android:layout_gravity="center"
17
        android:text="@string/association"
18
        android:textAppearance="?android:attr/textAppearanceMedium" />
19

    
20
    <LinearLayout
21
        android:orientation="horizontal"
22
        android:layout_width="match_parent"
23
        android:layout_height="wrap_content">
24

    
25
        <CheckBox
26
            android:layout_width="wrap_content"
27
            android:layout_height="match_parent"
28
            android:id="@+id/deferredjobCheckBox0"
29
            android:text="@string/color_yellow"
30
            android:onClick="onClick"
31
            android:layout_weight="1"
32
            android:checked="false"/>
33
        <CheckBox
34
            android:layout_width="wrap_content"
35
            android:layout_height="match_parent"
36
            android:id="@+id/deferredjobCheckBox1"
37
            android:text="@string/color_green"
38
            android:onClick="onClick"
39
            android:layout_weight="1"
40
            android:checked="false"/>
41
        <CheckBox
42
            android:layout_width="wrap_content"
43
            android:layout_height="match_parent"
44
            android:id="@+id/deferredjobCheckBox2"
45
            android:text="@string/color_blue"
46
            android:onClick="onClick"
47
            android:layout_weight="1"
48
            android:checked="false"/>
49
        <CheckBox
50
            android:layout_width="wrap_content"
51
            android:layout_height="match_parent"
52
            android:id="@+id/deferredjobCheckBox3"
53
            android:text="@string/color_red"
54
            android:onClick="onClick"
55
            android:layout_weight="1"
56
            android:checked="false"/>
57

    
58
    </LinearLayout>
59

    
60
</LinearLayout>
(6-6/47)