TacoTheDank
4 years ago
8 changed files with 1533 additions and 1316 deletions
File diff suppressed because it is too large
Load Diff
@ -1,77 +1,82 @@
@@ -1,77 +1,82 @@
|
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<!-- Copyright (C) 2010 Daniel Nilsson |
||||
<?xml version="1.0" encoding="utf-8"?><!-- |
||||
Copyright (C) 2010 Daniel Nilsson |
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License"); |
||||
you may not use this file except in compliance with the License. |
||||
You may obtain a copy of the License at |
||||
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0 |
||||
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software |
||||
distributed under the License is distributed on an "AS IS" BASIS, |
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
See the License for the specific language governing permissions and |
||||
limitations under the License. |
||||
See the License for the specific language governing permissions and limitations under the License. |
||||
|
||||
// Taken from https://github.com/attenzione/android-ColorPickerPreference/tree/696bb050527d6a7ae14e47b7472a0640a7ff08e6 |
||||
--> |
||||
|
||||
<LinearLayout |
||||
xmlns:android="http://schemas.android.com/apk/res/android" |
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
||||
android:layout_width="wrap_content" |
||||
android:layout_height="wrap_content" |
||||
android:orientation="horizontal" |
||||
android:paddingLeft="5dp" |
||||
android:paddingRight="5dp" |
||||
android:orientation="horizontal"> |
||||
|
||||
<net.margaritov.preference.colorpicker.ColorPickerView |
||||
android:id="@+id/color_picker_view" |
||||
android:layout_width="wrap_content" |
||||
android:layout_height="wrap_content" |
||||
android:tag="landscape" |
||||
android:layerType="software" |
||||
/> |
||||
|
||||
<LinearLayout |
||||
android:layout_width="wrap_content" |
||||
android:layout_height="wrap_content" |
||||
android:orientation="vertical" |
||||
android:layout_marginBottom="10dp"> |
||||
|
||||
<TextView |
||||
android:layout_width="wrap_content" |
||||
android:layout_height="wrap_content" |
||||
android:text="@string/press_color_to_apply" |
||||
android:gravity="center" |
||||
android:layout_marginTop="6dp" |
||||
android:layout_marginLeft="6dp" |
||||
android:layout_marginRight="6dp" |
||||
android:layout_marginBottom="5dp" |
||||
android:textAppearance="?android:attr/textAppearanceSmall" |
||||
/> |
||||
android:paddingRight="5dp"> |
||||
|
||||
<net.margaritov.preference.colorpicker.ColorPickerView |
||||
android:id="@+id/color_picker_view" |
||||
android:layout_width="wrap_content" |
||||
android:layout_height="wrap_content" |
||||
android:layerType="software" |
||||
android:tag="landscape" /> |
||||
|
||||
<LinearLayout |
||||
android:layout_width="wrap_content" |
||||
android:layout_height="wrap_content" |
||||
android:layout_marginBottom="10dp" |
||||
android:orientation="vertical"> |
||||
|
||||
<EditText |
||||
android:id="@+id/hex_val" |
||||
android:layout_width="fill_parent" |
||||
android:layout_height="wrap_content" |
||||
android:hint="HEX" |
||||
android:imeOptions="actionDone" |
||||
android:maxLength="7" |
||||
android:singleLine="true" |
||||
android:inputType="textCapCharacters" |
||||
android:visibility="gone"></EditText> |
||||
|
||||
<TextView |
||||
android:layout_width="wrap_content" |
||||
android:layout_height="wrap_content" |
||||
android:layout_marginBottom="5dp" |
||||
android:layout_marginLeft="6dp" |
||||
android:layout_marginRight="6dp" |
||||
android:layout_marginTop="6dp" |
||||
android:gravity="center" |
||||
android:text="@string/press_color_to_apply" |
||||
android:textAppearance="?android:attr/textAppearanceSmall" /> |
||||
|
||||
<net.margaritov.preference.colorpicker.ColorPickerPanelView |
||||
android:id="@+id/old_color_panel" |
||||
android:layout_width="fill_parent" |
||||
android:layout_height="40dp" |
||||
android:layout_weight="0.5" /> |
||||
|
||||
<TextView |
||||
android:layout_width="fill_parent" |
||||
android:layout_height="wrap_content" |
||||
android:layout_marginBottom="10dp" |
||||
android:layout_marginTop="10dp" |
||||
android:gravity="center" |
||||
android:text="↓" |
||||
android:textSize="20sp" /> |
||||
|
||||
<net.margaritov.preference.colorpicker.ColorPickerPanelView |
||||
android:id="@+id/new_color_panel" |
||||
android:layout_width="fill_parent" |
||||
android:layout_height="40dp" |
||||
android:layout_weight="0.5" /> |
||||
</LinearLayout> |
||||
|
||||
<net.margaritov.preference.colorpicker.ColorPickerPanelView |
||||
android:id="@+id/old_color_panel" |
||||
android:layout_width="fill_parent" |
||||
android:layout_height="40dp" |
||||
android:layout_weight="0.5" |
||||
/> |
||||
|
||||
<TextView |
||||
android:layout_width="fill_parent" |
||||
android:layout_height="wrap_content" |
||||
android:text="↓" |
||||
android:textSize="20sp" |
||||
android:gravity="center" |
||||
android:layout_marginTop="10dp" |
||||
android:layout_marginBottom="10dp" |
||||
/> |
||||
|
||||
<net.margaritov.preference.colorpicker.ColorPickerPanelView |
||||
android:id="@+id/new_color_panel" |
||||
android:layout_width="fill_parent" |
||||
android:layout_height="40dp" |
||||
android:layout_weight="0.5" |
||||
/> |
||||
|
||||
</LinearLayout> |
||||
|
||||
</LinearLayout> |
||||
</LinearLayout> |
||||
|
@ -1,77 +1,88 @@
@@ -1,77 +1,88 @@
|
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<!-- Copyright (C) 2010 Daniel Nilsson |
||||
<?xml version="1.0" encoding="utf-8"?><!-- |
||||
Copyright (C) 2010 Daniel Nilsson |
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License"); |
||||
you may not use this file except in compliance with the License. |
||||
You may obtain a copy of the License at |
||||
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0 |
||||
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software |
||||
distributed under the License is distributed on an "AS IS" BASIS, |
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
See the License for the specific language governing permissions and |
||||
limitations under the License. |
||||
See the License for the specific language governing permissions and limitations under the License. |
||||
|
||||
// Taken from https://github.com/attenzione/android-ColorPickerPreference/tree/696bb050527d6a7ae14e47b7472a0640a7ff08e6 |
||||
--> |
||||
|
||||
<LinearLayout |
||||
xmlns:android="http://schemas.android.com/apk/res/android" |
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
||||
android:layout_width="wrap_content" |
||||
android:layout_height="wrap_content" |
||||
android:orientation="vertical" |
||||
android:paddingLeft="5dp" |
||||
android:paddingRight="5dp" |
||||
android:orientation="vertical"> |
||||
|
||||
<net.margaritov.preference.colorpicker.ColorPickerView |
||||
android:id="@+id/color_picker_view" |
||||
android:layout_width="wrap_content" |
||||
android:layout_height="wrap_content" |
||||
android:layout_gravity="center_horizontal" |
||||
android:tag="portrait" |
||||
android:layerType="software" |
||||
/> |
||||
|
||||
<TextView |
||||
android:layout_width="wrap_content" |
||||
android:layout_height="wrap_content" |
||||
android:text="@string/press_color_to_apply" |
||||
android:gravity="left" |
||||
android:layout_marginLeft="6dp" |
||||
android:layout_marginRight="6dp" |
||||
android:layout_marginBottom="5dp" |
||||
android:textAppearance="?android:attr/textAppearanceSmall" |
||||
/> |
||||
|
||||
<LinearLayout |
||||
android:layout_width="wrap_content" |
||||
android:layout_height="40dp" |
||||
android:orientation="horizontal" |
||||
android:layout_marginBottom="10dp"> |
||||
android:paddingRight="5dp"> |
||||
|
||||
<net.margaritov.preference.colorpicker.ColorPickerView |
||||
android:id="@+id/color_picker_view" |
||||
android:layout_width="wrap_content" |
||||
android:layout_height="wrap_content" |
||||
android:layerType="software" |
||||
android:tag="portrait" /> |
||||
|
||||
<LinearLayout |
||||
android:id="@+id/text_hex_wrapper" |
||||
android:layout_width="fill_parent" |
||||
android:layout_height="wrap_content" |
||||
android:layout_marginBottom="5dp" |
||||
android:layout_marginLeft="6dp" |
||||
android:layout_marginRight="6dp"> |
||||
|
||||
<TextView |
||||
android:layout_width="wrap_content" |
||||
android:layout_height="wrap_content" |
||||
android:gravity="left" |
||||
android:text="@string/press_color_to_apply" |
||||
android:textAppearance="?android:attr/textAppearanceSmall" /> |
||||
|
||||
<EditText |
||||
android:id="@+id/hex_val" |
||||
android:layout_width="0dp" |
||||
android:layout_height="wrap_content" |
||||
android:layout_weight="1" |
||||
android:hint="HEX" |
||||
android:imeOptions="actionDone" |
||||
android:maxLength="7" |
||||
android:singleLine="true" |
||||
android:inputType="textCapCharacters" |
||||
android:visibility="gone"></EditText> |
||||
</LinearLayout> |
||||
|
||||
<LinearLayout |
||||
android:layout_width="wrap_content" |
||||
android:layout_height="40dp" |
||||
android:layout_marginBottom="10dp" |
||||
android:orientation="horizontal"> |
||||
|
||||
<net.margaritov.preference.colorpicker.ColorPickerPanelView |
||||
android:id="@+id/old_color_panel" |
||||
android:layout_width="0px" |
||||
android:layout_height="fill_parent" |
||||
android:layout_weight="0.5" /> |
||||
|
||||
<TextView |
||||
android:layout_width="wrap_content" |
||||
android:layout_height="fill_parent" |
||||
android:layout_marginLeft="10dp" |
||||
android:layout_marginRight="10dp" |
||||
android:gravity="center" |
||||
android:text="→" |
||||
android:textSize="20sp" /> |
||||
|
||||
<net.margaritov.preference.colorpicker.ColorPickerPanelView |
||||
android:id="@+id/new_color_panel" |
||||
android:layout_width="0px" |
||||
android:layout_height="wrap_content" |
||||
android:layout_weight="0.5" /> |
||||
</LinearLayout> |
||||
|
||||
<net.margaritov.preference.colorpicker.ColorPickerPanelView |
||||
android:id="@+id/old_color_panel" |
||||
android:layout_width="0px" |
||||
android:layout_height="fill_parent" |
||||
android:layout_weight="0.5" |
||||
/> |
||||
|
||||
<TextView |
||||
android:layout_width="wrap_content" |
||||
android:layout_height="fill_parent" |
||||
android:text="→" |
||||
android:textSize="20sp" |
||||
android:gravity="center" |
||||
android:layout_marginLeft="10dp" |
||||
android:layout_marginRight="10dp" |
||||
/> |
||||
|
||||
<net.margaritov.preference.colorpicker.ColorPickerPanelView |
||||
android:id="@+id/new_color_panel" |
||||
android:layout_width="0px" |
||||
android:layout_height="wrap_content" |
||||
android:layout_weight="0.5" |
||||
/> |
||||
|
||||
</LinearLayout> |
||||
|
||||
</LinearLayout> |
||||
</LinearLayout> |
||||
|
Loading…
Reference in new issue