OSDN Git Service

Snap for 4481641 from c50f173722624b4455bf699d47382f7183e6453b to pi-release
[android-x86/packages-apps-Gallery2.git] / res / layout-land / filtershow_saturation_controls.xml
1 <?xml version="1.0" encoding="utf-8"?>
2
3 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
4               android:orientation="vertical"
5               android:layout_width="match_parent"
6               android:layout_height="match_parent">
7
8     <ScrollView
9             android:layout_width="match_parent"
10             android:layout_height="0dp"
11             android:layout_weight="1"
12             android:fadeScrollbars="false">
13
14         <GridLayout
15                 android:orientation="horizontal"
16                 android:layout_width="match_parent"
17                 android:layout_height="wrap_content"
18                 android:alignmentMode="alignBounds"
19                 android:useDefaultMargins="true"
20                 android:columnOrderPreserved="false"
21                 android:columnCount="2">
22
23             <TextView
24                     android:layout_gravity="left|center_vertical"
25                     android:text="@string/editor_chan_sat_red"
26                     android:textStyle="bold"
27                     android:textColor="#ff8080"
28                     android:layout_marginLeft="8dp"/>
29             <TextView
30                     android:layout_gravity="right|center_vertical"
31                     android:id="@+id/redValue"
32                     android:layout_marginRight="16dp"/>
33             <SeekBar
34                     android:id="@+id/redSeekBar"
35                     android:layout_width="match_parent"
36                     android:layout_height="wrap_content"
37                     style="@style/FilterShowSlider"
38                     android:layout_columnSpan="2"/>
39
40             <TextView
41                     android:layout_gravity="left|center_vertical"
42                     android:text="@string/editor_chan_sat_yellow"
43                     android:textStyle="bold"
44                     android:textColor="#ffff80"
45                     android:layout_marginLeft="8dp"/>
46             <TextView
47                     android:layout_gravity="right|center_vertical"
48                     android:id="@+id/yellowValue"
49                     android:layout_marginRight="16dp"/>
50             <SeekBar
51                     android:id="@+id/yellowSeekBar"
52                     android:layout_width="match_parent"
53                     android:layout_height="wrap_content"
54                     style="@style/FilterShowSlider"
55                     android:layout_columnSpan="2"/>
56
57             <TextView
58                     android:layout_gravity="left|center_vertical"
59                     android:text="@string/editor_chan_sat_green"
60                     android:textStyle="bold"
61                     android:textColor="#80ff80"
62                     android:layout_marginLeft="8dp"/>
63             <TextView
64                     android:layout_gravity="right|center_vertical"
65                     android:id="@+id/greenValue"
66                     android:layout_marginRight="16dp"/>
67             <SeekBar
68                     android:id="@+id/greenSeekBar"
69                     android:layout_width="match_parent"
70                     android:layout_height="wrap_content"
71                     style="@style/FilterShowSlider"
72                     android:layout_columnSpan="2"/>
73
74             <TextView
75                     android:layout_gravity="left|center_vertical"
76                     android:text="@string/editor_chan_sat_cyan"
77                     android:textStyle="bold"
78                     android:textColor="#80ffff"
79                     android:layout_marginLeft="8dp"/>
80             <TextView
81                     android:layout_gravity="right|center_vertical"
82                     android:id="@+id/cyanValue"
83                     android:layout_marginRight="16dp"/>
84             <SeekBar
85                     android:id="@+id/cyanSeekBar"
86                     android:layout_width="match_parent"
87                     android:layout_height="wrap_content"
88                     style="@style/FilterShowSlider"
89                     android:layout_columnSpan="2"/>
90
91             <TextView
92                     android:layout_gravity="left|center_vertical"
93                     android:text="@string/editor_chan_sat_blue"
94                     android:textStyle="bold"
95                     android:textColor="#8080ff"
96                     android:layout_marginLeft="8dp"/>
97             <TextView
98                     android:layout_gravity="right|center_vertical"
99                     android:id="@+id/blueValue"
100                     android:layout_marginRight="16dp"/>
101             <SeekBar
102                     android:id="@+id/blueSeekBar"
103                     android:layout_width="match_parent"
104                     android:layout_height="wrap_content"
105                     style="@style/FilterShowSlider"
106                     android:layout_columnSpan="2"/>
107
108             <TextView
109                     android:layout_gravity="left|center_vertical"
110                     android:text="@string/editor_chan_sat_magenta"
111                     android:textStyle="bold"
112                     android:textColor="#ff80ff"
113                     android:layout_marginLeft="8dp"/>
114             <TextView
115                     android:layout_gravity="right|center_vertical"
116                     android:id="@+id/magentaValue"
117                     android:layout_marginRight="16dp"/>
118             <SeekBar
119                     android:id="@+id/magentaSeekBar"
120                     android:layout_width="match_parent"
121                     android:layout_height="wrap_content"
122                     style="@style/FilterShowSlider"
123                     android:layout_columnSpan="2"/>
124         </GridLayout>
125     </ScrollView>
126
127     <GridLayout
128             android:orientation="horizontal"
129             android:layout_width="match_parent"
130             android:layout_height="128dp"
131             android:alignmentMode="alignBounds"
132             android:useDefaultMargins="true"
133             android:columnOrderPreserved="false"
134             android:layout_weight="1"
135             android:columnCount="2">
136
137         <TextView
138                 android:layout_gravity="left|center_vertical"
139                 android:text="@string/editor_chan_sat_main"
140                 android:layout_marginLeft="8dp"/>
141         <TextView
142                 android:layout_gravity="right|center_vertical"
143                 android:id="@+id/mainValue"
144                 android:layout_marginRight="16dp"/>
145         <SeekBar
146                 android:id="@+id/mainSeekbar"
147                 android:layout_width="match_parent"
148                 android:layout_height="wrap_content"
149                 style="@style/FilterShowSlider"
150                 android:layout_columnSpan="2"/>
151     </GridLayout>
152
153 </LinearLayout>