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

	<PreferenceCategory
    	android:title="@string/category_screen_title">
	    <!-- Color tuning -->
	    <com.cyanogenmod.settings.device.ColorTuningPreference 
	        android:key="color_tuning"
	        android:title="@string/color_tuning_title_head"
	        android:summary="@string/color_tuning_summary_head" />
	    <!-- mDNIe Options -->
	    <ListPreference
	        android:key="mdnie"
	        android:title="@string/mdnie_title_head"
	        android:summary="@string/mdnie_summary_head"
	        android:entries="@array/mdnie_entries"
	        android:entryValues="@array/mdnie_entries_values"
	        android:defaultValue="6" />
	</PreferenceCategory>

	<PreferenceCategory
    	android:title="@string/category_touchkey_title">
	    <!-- Touch key backlight timeout -->
	    <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="1600" />
	</PreferenceCategory>

	<PreferenceCategory
        android:title="@string/category_radio_title"
        android:key="category_radio">
	    <!-- UMTS/HSDPA/HSUPA settings -->
	    <ListPreference
	        android:key="hspa"
	        android:title="@string/hspa_title_head"
	        android:summary="@string/hspa_summary_head"
	        android:entries="@array/hspa_entries"
            android:entryValues="@array/hspa_entries_values"
            android:defaultValue="23" />
	</PreferenceCategory>

	<PreferenceCategory
		android:title="@string/category_tvout_title">
		<CheckBoxPreference
			android:key="tvout_enable"
			android:title="@string/tvout_enable_head"
			android:summaryOn="@string/tvout_enable_summary_on"
			android:summaryOff="@string/tvout_enable_summary_nocable"
			android:persistent="false"
			android:enabled="false" />
		<ListPreference
			android:key="tvout_system"
			android:title="@string/tvout_system_head"
			android:summary="@string/tvout_system_summary"
			android:entries="@array/tvout_system_entries"
			android:entryValues="@array/tvout_system_entries_values"
			android:defaultValue="2" />
	</PreferenceCategory>

        <PreferenceCategory
            android:title="@string/category_volume_boost_title"
            android:key="category_volume_boost">
                <!-- Volume Boost -->
                <com.cyanogenmod.settings.device.VolumeBoostPreference
                android:key="volume_boost"
                android:title="@string/volume_boost_title_head"
                android:summary="@string/volume_boost_summary_head" />
	</PreferenceCategory>

</PreferenceScreen>