blob: 5c0a1e185a553cc5c7c992d2c73cca23e28d5c3b [file] [log] [blame]
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2008 The Android Open Source Project
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16
17<PreferenceScreen
The Android Open Source Project1feaa852009-02-10 15:44:05 -080018 xmlns:android="http://schemas.android.com/apk/res/android"
19 android:title="@string/settings_label"
20 android:key="parent">
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -070021
22 <PreferenceScreen
23 android:title="@string/radio_controls_title"
24 android:summary="@string/radio_controls_summary">
25 <intent
26 android:action="android.intent.action.MAIN"
27 android:targetPackage="com.android.settings"
28 android:targetClass="com.android.settings.WirelessSettings" />
29 </PreferenceScreen>
30
31 <PreferenceScreen
32 android:key="call_settings"
33 android:title="@string/call_settings_title"
34 android:summary="@string/call_settings_summary">
35 <intent
36 android:action="android.intent.action.MAIN"
37 android:targetPackage="com.android.phone"
38 android:targetClass="com.android.phone.CallFeaturesSetting" />
39 </PreferenceScreen>
40
41 <!-- Sound and Display -->
42
43 <PreferenceScreen
44 android:title="@string/sound_and_display_settings"
45 android:summary="@string/sound_and_display_settings_summary">
46 <intent
47 android:action="android.intent.action.MAIN"
48 android:targetPackage="com.android.settings"
49 android:targetClass="com.android.settings.SoundAndDisplaySettings" />
50 </PreferenceScreen>
51
52 <!-- Data Sync. The settings activity will ensure this is resolved to an
53 activity on the system image, otherwise it will remove this
54 preference. -->
55
56 <PreferenceScreen
57 android:title="@string/sync_settings"
58 android:summary="@string/sync_settings_summary"
59 android:key="sync_settings">
60 <intent android:action="android.settings.SYNC_SETTINGS" />
61 </PreferenceScreen>
62
63 <!-- Security & Privacy -->
64
65 <PreferenceScreen
66 android:title="@string/security_settings_title"
67 android:summary="@string/security_settings_summary">
68 <intent
69 android:action="android.intent.action.MAIN"
70 android:targetPackage="com.android.settings"
71 android:targetClass="com.android.settings.SecuritySettings" />
72 </PreferenceScreen>
73
74 <!-- Application Settings -->
75
76 <PreferenceScreen
77 android:title="@string/applications_settings"
78 android:summary="@string/applications_settings_summary"
79 android:key="applications_settings">
80 <intent
81 android:action="android.intent.action.MAIN"
82 android:targetPackage="com.android.settings"
83 android:targetClass="com.android.settings.ApplicationSettings" />
84 </PreferenceScreen>
85
86 <!-- Storage -->
87
88 <PreferenceScreen
89 android:title="@string/storage_settings_title"
90 android:summary="@string/storage_settings_summary">
91 <intent android:action="android.intent.action.MAIN"
92 android:targetPackage="com.android.settings"
93 android:targetClass="com.android.settings.deviceinfo.Memory" />
94 </PreferenceScreen>
95
96 <!-- Date & Time -->
97
98 <PreferenceScreen
99 android:title="@string/date_and_time_settings_title"
100 android:summary="@string/date_and_time_settings_summary">
101 <intent
102 android:action="android.intent.action.MAIN"
103 android:targetPackage="com.android.settings"
104 android:targetClass="com.android.settings.DateTimeSettings" />
105 </PreferenceScreen>
106
107 <!-- Language -->
108
109 <PreferenceScreen
110 android:title="@string/language_settings"
111 android:summary="@string/language_settings_summary">
112 <intent
113 android:action="android.intent.action.MAIN"
114 android:targetPackage="com.android.settings"
115 android:targetClass="com.android.settings.LanguageSettings" />
116 </PreferenceScreen>
117
118 <!-- About Device -->
119
120 <PreferenceScreen
121 android:title="@string/about_settings"
122 android:summary="@string/about_settings_summary">
123 <intent
124 android:action="android.intent.action.MAIN"
125 android:targetPackage="com.android.settings"
126 android:targetClass="com.android.settings.DeviceInfoSettings" />
127 </PreferenceScreen>
128
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -0700129</PreferenceScreen>