1+ <?xml version =" 1.0" encoding =" utf-8" ?>
2+ <!--
3+ Copyright (C) 2010 Daniel Nilsson
4+ Copyright (C) 2012 The CyanogenMod Project
5+ Copyright (C) 2013 XuiMod
6+
7+ Licensed under the Apache License, Version 2.0 (the "License");
8+ you may not use this file except in compliance with the License.
9+ You may obtain a copy of the License at
10+
11+ http://www.apache.org/licenses/LICENSE-2.0
12+
13+ Unless required by applicable law or agreed to in writing, software
14+ distributed under the License is distributed on an "AS IS" BASIS,
15+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16+ See the License for the specific language governing permissions and
17+ limitations under the License.
18+ -->
19+
20+ <LinearLayout xmlns : android =" http://schemas.android.com/apk/res/android"
21+ android : id =" @+id/LinearLayout1"
22+ android : layout_width =" match_parent"
23+ android : layout_height =" match_parent"
24+ android : orientation =" vertical" >
25+
26+ <com .zst.app.multiwindowsidebar.preference.colorpicker.ColorPickerView
27+ android : id =" @+id/color_picker_view"
28+ android : layout_width =" match_parent"
29+ android : layout_height =" wrap_content" />
30+
31+ <LinearLayout
32+ android : id =" @+id/color_text_box"
33+ android : layout_width =" match_parent"
34+ android : layout_height =" wrap_content"
35+ android : layout_margin =" 5dp"
36+ android : orientation =" horizontal" >
37+
38+ <TextView
39+ android : id =" @+id/color_hex_label"
40+ android : layout_width =" wrap_content"
41+ android : layout_height =" wrap_content"
42+ android : layout_weight =" 0"
43+ android : gravity =" right"
44+ android : text =" @string/color_hex"
45+ android : textAppearance =" ?android:attr/textAppearanceMedium" />
46+
47+ <EditText
48+ android : id =" @+id/current_hex_text"
49+ android : layout_width =" wrap_content"
50+ android : layout_height =" wrap_content"
51+ android : layout_weight =" 1"
52+ android : digits =" 0123456789ABCDEF"
53+ android : ems =" 10"
54+ android : inputType =" textCapCharacters"
55+ android : maxLength =" 8" />
56+
57+ <Button
58+ android : id =" @+id/color_apply"
59+ android : layout_width =" wrap_content"
60+ android : layout_height =" wrap_content"
61+ android : layout_weight =" 0"
62+ android : text =" @string/apply" />
63+
64+ </LinearLayout >
65+
66+ <LinearLayout
67+ android : id =" @+id/color_panel_view"
68+ android : layout_width =" match_parent"
69+ android : layout_height =" 36dp"
70+ android : layout_margin =" 5dp"
71+ android : orientation =" horizontal" >
72+
73+ <com .zst.app.multiwindowsidebar.preference.colorpicker.ColorPanelView
74+ android : id =" @+id/old_color_panel"
75+ android : layout_width =" 0px"
76+ android : layout_height =" match_parent"
77+ android : layout_weight =" 0.5" />
78+
79+ <TextView
80+ android : layout_width =" wrap_content"
81+ android : layout_height =" match_parent"
82+ android : layout_marginLeft =" 5dp"
83+ android : layout_marginRight =" 5dp"
84+ android : gravity =" center"
85+ android : text =" @string/arrow_symbol"
86+ android : textColor =" #ffffff"
87+ android : textSize =" 30sp" />
88+
89+ <com .zst.app.multiwindowsidebar.preference.colorpicker.ColorPanelView
90+ android : id =" @+id/new_color_panel"
91+ android : layout_width =" 0px"
92+ android : layout_height =" match_parent"
93+ android : layout_weight =" 0.5" />
94+ </LinearLayout >
95+
96+ </LinearLayout >
0 commit comments