summaryrefslogtreecommitdiffstats
path: root/res/xml
diff options
context:
space:
mode:
authornebkat <nebkat@gmail.com>2011-11-27 21:34:20 +0000
committernebkat <nebkat@gmail.com>2011-11-28 19:31:31 +0000
commit11717ad53ff0c5fc13bbead8c2593a49fd7f4ea7 (patch)
tree5fb4a53f47061bc1427d303d4951ca7d4ee92479 /res/xml
parentfe446895560586e6ec5cd0115c137e0cad4bffa9 (diff)
downloadandroid_packages_apps_Trebuchet-11717ad53ff0c5fc13bbead8c2593a49fd7f4ea7.tar.gz
android_packages_apps_Trebuchet-11717ad53ff0c5fc13bbead8c2593a49fd7f4ea7.tar.bz2
android_packages_apps_Trebuchet-11717ad53ff0c5fc13bbead8c2593a49fd7f4ea7.zip
Preferences: initial Preferences Activity, Provider and XML
Change-Id: I27d44993c4e34e08cfafff6d7a418df7c4f06fd2
Diffstat (limited to 'res/xml')
-rw-r--r--res/xml/preferences.xml48
1 files changed, 48 insertions, 0 deletions
diff --git a/res/xml/preferences.xml b/res/xml/preferences.xml
new file mode 100644
index 000000000..6679751a3
--- /dev/null
+++ b/res/xml/preferences.xml
@@ -0,0 +1,48 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2009 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
+ <!-- UI -->
+ <PreferenceCategory android:title="@string/preferences_interface_title">
+ <!-- Homescreen -->
+ <PreferenceScreen android:key="ui_homescreen"
+ android:title="@string/preferences_interface_homescreen_title">
+
+ </PreferenceScreen>
+
+ <!-- Drawer -->
+ <PreferenceScreen android:key="ui_drawer"
+ android:title="@string/preferences_interface_drawer_title">
+
+ </PreferenceScreen>
+
+ <!-- Dock -->
+ <PreferenceScreen android:key="ui_dock"
+ android:title="@string/preferences_interface_dock_title">
+
+ </PreferenceScreen>
+
+ <!-- Icons -->
+ <PreferenceScreen android:key="ui_icons"
+ android:title="@string/preferences_interface_icons_title">
+
+ </PreferenceScreen>
+ </PreferenceCategory>
+
+ <!-- General -->
+ <PreferenceCategory android:title="@string/preferences_general_title">
+ </PreferenceCategory>
+</PreferenceScreen>