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