summaryrefslogtreecommitdiffstats
path: root/GNexusParts/res/layout/preference_colorgamma_presets.xml
blob: af8574004df2a3c77d9214cdcaf7446222736167 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<?xml version="1.0" encoding="utf-8"?>

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

    <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:gravity="center_horizontal"
            android:paddingBottom="20dip">

        <ImageView
            android:id="@+id/imageView0"
            android:layout_width="match_parent"
            android:layout_height="200dp"
            android:paddingLeft="20dip"
            android:paddingRight="20dip"
            android:paddingTop="5dip"
            android:src="@drawable/color_tuning_preview" />

        <ImageView
            android:id="@+id/imageView1"
            android:layout_width="match_parent"
            android:layout_height="50dp"
            android:paddingLeft="20dip"
            android:paddingRight="20dip"
            android:paddingTop="5dip"
            android:src="@drawable/red_tuning_preview" />

        <ImageView
            android:id="@+id/imageView2"
            android:layout_width="match_parent"
            android:layout_height="50dp"
            android:layout_below="@+id/imageView1"
            android:paddingLeft="20dip"
            android:paddingRight="20dip"
            android:paddingTop="5dip"
            android:src="@drawable/green_tuning_preview" />

        <ImageView
            android:id="@+id/imageView3"
            android:layout_width="match_parent"
            android:layout_height="50dp"
            android:layout_below="@+id/imageView2"
            android:paddingLeft="20dip"
            android:paddingRight="20dip"
            android:paddingTop="5dip"
            android:src="@drawable/blue_tuning_preview" />

        <LinearLayout
            android:id="@+id/linearLayout1"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:layout_below="@+id/imageView0"
            android:gravity="center_horizontal" >

            <Button
                android:id="@+id/btnPreset1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/preset1_default_title"
                android:textSize="12dp"
                android:width="100dp"/>

            <Button
                android:id="@+id/btnPreset2"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/preset2_default_title"
                android:textSize="12dp"
                android:width="100dp"/>

            <Button
                android:id="@+id/btnPreset3"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/preset3_default_title"
                android:textSize="12dp"
                android:width="100dp"/>
        </LinearLayout>

        <LinearLayout
            android:id="@+id/linearLayout2"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_below="@+id/linearLayout1"
            android:gravity="center_horizontal" >

            <Button
                android:id="@+id/btnPreset4"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/preset4_default_title"
                android:textSize="12dp"
                android:width="100dp"/>

            <Button
                android:id="@+id/btnPreset5"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/preset5_default_title"
                android:textSize="12dp"
                android:width="100dp"/>

            <Button
                android:id="@+id/btnPreset6"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/preset6_default_title"
                android:textSize="12dp"
                android:width="100dp"/>
        </LinearLayout>

        <LinearLayout
            android:layout_width="320dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:layout_below="@+id/linearLayout2" >

            <TextView
                android:id="@+id/textView1"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:paddingLeft="10dip"
                android:text="@string/credits_presets"
                android:textSize="12dp"/>

        </LinearLayout>

    </RelativeLayout>

</ScrollView>