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 <!-- 18 19 This code is deprecated. This screen is no longer used in Settings. 20 The ApplicationSettings class is kept in case an external app references it directly. 21 22 --> 23 24 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" 25 android:title="@string/applications_settings_header" 26 android:summary="@string/applications_settings_summary" 27 android:key="applications_settings"> 28 29 <PreferenceScreen 30 android:fragment="com.android.settings.applications.ManageApplications" 31 android:title="@string/manageapplications_settings_title" 32 android:summary="@string/manageapplications_settings_summary"> 33 </PreferenceScreen> 34 35 <PreferenceScreen 36 android:fragment="com.android.settings.applications.ManageApplications" 37 android:title="@string/runningservices_settings_title" 38 android:summary="@string/runningservices_settings_summary"> 39 <extra android:name="classname" android:value="com.android.settings.Settings$RunningServicesActivity" /> 40 </PreferenceScreen> 41 42 <PreferenceScreen 43 android:fragment="com.android.settings.applications.ManageApplications" 44 android:title="@string/storageuse_settings_title" 45 android:summary="@string/storageuse_settings_summary"> 46 <extra android:name="classname" 47 android:value="com.android.settings.Settings$StorageUseActivity" /> 48 </PreferenceScreen> 49 50 <CheckBoxPreference 51 android:key="toggle_advanced_settings" 52 android:title="@string/advanced_settings" 53 android:summaryOff="@string/advanced_settings_summary" 54 android:summaryOn="@string/advanced_settings_summary" 55 android:persistent="false" /> 56 57 <ListPreference 58 android:key="app_install_location" 59 android:title="@string/app_install_location_title" 60 android:summary="@string/app_install_location_summary" 61 android:persistent="false" 62 android:entries="@array/app_install_location_entries" 63 android:entryValues="@array/app_install_location_values"/> 64 65 <!-- Disabled quick launch settings pending UI redesign. 66 <PreferenceScreen 67 android:key="quick_launch" 68 android:title="@string/quick_launch_title" 69 android:summary="@string/quick_launch_summary"> 70 <intent android:action="android.intent.action.MAIN" 71 android:targetPackage="com.android.settings" 72 android:targetClass="com.android.settings.quicklaunch.QuickLaunchSettings" /> 73 </PreferenceScreen> 74 --> 75 76 </PreferenceScreen> 77 78