OSDN Git Service

Start fragmentizing battery usage.
[android-x86/packages-apps-Settings.git] / res / xml / application_settings.xml
1 <?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 xmlns:android="http://schemas.android.com/apk/res/android"
18         android:title="@string/applications_settings_header"
19         android:summary="@string/applications_settings_summary"
20         android:key="applications_settings">
21
22     <CheckBoxPreference
23             android:key="toggle_install_applications"
24             android:title="@string/install_applications"
25             android:summaryOff="@string/install_unknown_applications"
26             android:summaryOn="@string/install_unknown_applications"
27             android:persistent="false" />
28
29     <ListPreference
30         android:key="app_install_location"
31         android:title="@string/app_install_location_title"
32         android:summary="@string/app_install_location_summary"
33         android:persistent="false"
34         android:entries="@array/app_install_location_entries"
35         android:entryValues="@array/app_install_location_values"/>
36
37     <PreferenceScreen
38             android:key="quick_launch"
39             android:title="@string/quick_launch_title"
40             android:summary="@string/quick_launch_summary">
41         <intent android:action="android.intent.action.MAIN"
42                 android:targetPackage="com.android.settings"
43                 android:targetClass="com.android.settings.quicklaunch.QuickLaunchSettings" />
44     </PreferenceScreen>
45         
46     <PreferenceScreen
47             android:fragment="com.android.settings.applications.ManageApplications"
48             android:title="@string/manageapplications_settings_title"
49             android:summary="@string/manageapplications_settings_summary">
50     </PreferenceScreen>
51
52     <PreferenceScreen
53             android:fragment="com.android.settings.applications.ManageApplications"
54             android:title="@string/runningservices_settings_title"
55             android:summary="@string/runningservices_settings_summary">
56         <extra android:name="classname" android:value="com.android.settings.Settings$RunningServicesActivity" />
57     </PreferenceScreen>
58
59     <PreferenceScreen
60             android:fragment="com.android.settings.applications.ManageApplications"
61             android:title="@string/storageuse_settings_title"
62             android:summary="@string/storageuse_settings_summary">
63         <extra android:name="classname"
64                 android:value="com.android.settings.Settings$StorageUseActivity" />
65     </PreferenceScreen>
66
67     <PreferenceScreen
68             android:key="power_usage"
69             android:fragment="com.android.settings.fuelgauge.PowerUsageSummary"
70             android:title="@string/power_usage_summary_title"
71             android:summary="@string/power_usage_summary">
72     </PreferenceScreen>
73
74     <PreferenceScreen 
75             android:title="@string/development_settings_title" 
76             android:summary="@string/development_settings_summary"
77             android:fragment="com.android.settings.DevelopmentSettings">
78     </PreferenceScreen>
79     
80 </PreferenceScreen>
81