summaryrefslogtreecommitdiffstats
path: root/CrespoParts/res/xml/general_preferences.xml
blob: 173d7ebb259f20f4366cb2bbfdc491ab0bc0f441 (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
<?xml version="1.0" encoding="UTF-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">

    <!-- General settings -->
    <PreferenceCategory android:key="category_cpu"
        android:title="@string/category_cpu_title">

        <CheckBoxPreference android:key="deepidle"
            android:title="@string/cpu_deepidle_title_head"
            android:summary="@string/cpu_deepidle_summary_head" />
    </PreferenceCategory>

    <!-- Touch key backlight timeout -->
    <PreferenceCategory android:key="category_touchkey"
        android:title="@string/category_touchkey_title">
        <CheckBoxPreference android:key="touchkey_notification"
            android:title="@string/touchkey_notification_title_head"
            android:summary="@string/touchkey_notification_summary_head" />
        <ListPreference
            android:key="backlight_timeout"
            android:title="@string/backlight_timeout_title_head"
            android:summary="@string/backlight_timeout_summary_head"
            android:entries="@array/backlight_timeout_entries"
            android:entryValues="@array/backlight_timeout_entries_values"
            android:defaultValue="5"
            android:dependency="touchkey_notification" />
        <ListPreference
            android:key="blink_timeout"
            android:title="@string/blink_timeout_title_head"
            android:summary="@string/blink_timeout_summary_head"
            android:entries="@array/blink_timeout_entries"
            android:entryValues="@array/blink_timeout_entries_values"
            android:defaultValue="5"
            android:dependency="touchkey_notification" />
    </PreferenceCategory>

</PreferenceScreen>