OSDN Git Service

Rewrote custom start button image functionality
[android-x86/packages-apps-Taskbar.git] / app / src / main / res / xml / pref_appearance.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright 2016 Braden Farmer
3
4      Licensed under the Apache License, Version 2.0 (the "License");
5      you may not use this file except in compliance with the License.
6      You may obtain a copy of the License at
7
8           http://www.apache.org/licenses/LICENSE-2.0
9
10      Unless required by applicable law or agreed to in writing, software
11      distributed under the License is distributed on an "AS IS" BASIS,
12      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13      See the License for the specific language governing permissions and
14      limitations under the License.
15 -->
16
17 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
18
19     <ListPreference
20         android:defaultValue="light"
21         android:entries="@array/pref_theme_list"
22         android:entryValues="@array/pref_theme_list_values"
23         android:key="theme"
24         android:negativeButtonText="@null"
25         android:positiveButtonText="@null"
26         android:title="@string/pref_title_theme"/>
27
28     <Preference
29         android:key="icon_pack_list"
30         android:title="@string/icon_pack" />
31
32     <Preference
33         android:key="background_tint_pref"
34         android:title="@string/pref_title_background_tint" />
35
36     <Preference
37         android:key="accent_color_pref"
38         android:title="@string/pref_title_accent_color" />
39
40     <CheckBoxPreference
41         android:defaultValue="false"
42         android:key="invisible_button"
43         android:title="@string/pref_title_invisible_button"/>
44
45     <ListPreference
46         android:defaultValue="default"
47         android:entries="@array/pref_start_button_image_list"
48         android:entryValues="@array/pref_start_button_image_list_values"
49         android:key="start_button_image"
50         android:negativeButtonText="@null"
51         android:positiveButtonText="@null"
52         android:title="@string/pref_title_start_button_image"/>
53
54     <CheckBoxPreference
55         android:defaultValue="true"
56         android:key="shortcut_icon"
57         android:title="@string/pref_title_shortcut_icon"/>
58
59     <CheckBoxPreference
60         android:defaultValue="true"
61         android:key="visual_feedback"
62         android:title="@string/visual_feedback"/>
63
64     <CheckBoxPreference
65         android:defaultValue="false"
66         android:key="transparent_start_menu"
67         android:title="@string/transparent_start_menu"/>
68
69     <CheckBoxPreference
70         android:defaultValue="false"
71         android:key="icon_pack_use_mask"
72         android:title="@string/pref_title_use_mask"
73         android:summary="@string/pref_description_use_mask" />
74
75     <Preference
76         android:key="reset_colors"
77         android:title="@string/reset_colors" />
78
79     <PreferenceCategory android:key="dummy" android:title="\n\n" />
80
81 </PreferenceScreen>