summaryrefslogtreecommitdiffstats
path: root/DeviceSettings/res/xml/screen_preferences.xml
blob: b655618ace88e326137f06efeb8eaa5cfbb65c14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<?xml version="1.0" encoding="UTF-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">

    <!-- Screen -->
    <PreferenceCategory
            android:title="@string/screen_colors_title">
        <!-- CABC -->
        <com.cyanogenmod.settings.device.CABC
                android:key="cabc"
                android:title="@string/cabc_title_head"
                android:summary="@string/cabc_summary_head"
                android:defaultValue="true" />

        <!-- mDNIe Scenario modes -->
        <com.cyanogenmod.settings.device.mDNIeScenario
                android:key="mdnie_scenario"
                android:title="@string/mdnie_scenario_title_head"
                android:summary="@string/mdnie_scenario_summary_head"
                android:entries="@array/mdnie_scenario_entries"
                android:entryValues="@array/mdnie_scenario_entries_values"
                android:defaultValue="0" />

        <!-- mDNIe Mode -->
        <com.cyanogenmod.settings.device.mDNIeMode
                android:key="mdnie_mode"
                android:title="@string/mdnie_mode_title_head"
                android:summary="@string/mdnie_mode_summary_head"
                android:entries="@array/mdnie_mode_entries"
                android:entryValues="@array/mdnie_mode_entries_values"
                android:defaultValue="0" />

        <!-- mDNIe Negative mode -->
        <com.cyanogenmod.settings.device.mDNIeNegative
                android:key="mdnie_negative"
                android:title="@string/mdnie_negative_title_head"
                android:summary="@string/mdnie_negative_summary_head"
                android:entries="@array/mdnie_negative_entries"
                android:entryValues="@array/mdnie_negative_entries_values"
                android:defaultValue="0" />
    </PreferenceCategory>

    <!-- LED -->
    <PreferenceCategory
            android:title="@string/led_subcat_title">
        <!-- LED fading mode -->
        <com.cyanogenmod.settings.device.LedFade
                android:key="led_fade"
                android:title="@string/led_fade_title_head"
                android:summary="@string/led_fade_summary_head"
                android:entries="@array/led_fade_entries"
                android:entryValues="@array/led_fade_entries_values"
                android:defaultValue="1" />
    </PreferenceCategory>

    <!-- Touchkeys -->
    <PreferenceCategory
            android:title="@string/touchkey_subcat_title">
        <!-- Touchkey backlight -->
        <CheckBoxPreference
                android:key="touchkey_light"
                android:title="@string/touchkey_light_title_head"
                android:summaryOff="@string/touchkey_light_summary_off"
                android:summaryOn="@string/touchkey_light_summary_on"
                android:defaultValue="true" />
        <com.cyanogenmod.settings.device.TouchkeyTimeout
                android:key="touchkey_timeout"
                android:title="@string/touchkey_timeout_title_head"
                android:summary="@string/touchkey_timeout_summary_head"
                android:entries="@array/touchkey_timeout_entries"
                android:entryValues="@array/touchkey_timeout_entries_values"
                android:defaultValue="3" />
    </PreferenceCategory>

    <!-- S-Pen -->
    <PreferenceCategory
            android:key="category_spen"
            android:title="@string/spen_subcat_title">
        <!-- S-Pen power saving mode -->
        <com.cyanogenmod.settings.device.SPenPowerSavingMode
                android:key="spen_power_save"
                android:title="@string/spen_power_save_title_head"
                android:summary="@string/spen_power_save_summary_head" />
    </PreferenceCategory>

</PreferenceScreen>