diff options
Diffstat (limited to 'AriesParts/res/xml/main.xml')
-rw-r--r-- | AriesParts/res/xml/main.xml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/AriesParts/res/xml/main.xml b/AriesParts/res/xml/main.xml new file mode 100644 index 0000000..68938f4 --- /dev/null +++ b/AriesParts/res/xml/main.xml @@ -0,0 +1,25 @@ +<?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.AriesParts.ColorTuningPreference + android:key="color_tuning" + android:title="@string/color_tuning_title_head" + android:summary="@string/color_tuning_summary_head" /> + </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> + +</PreferenceScreen> |