1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- Copyright (C) 2015 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 18 xmlns:android="http://schemas.android.com/apk/res/android" 19 xmlns:settings="http://schemas.android.com/apk/res/com.android.settings" 20 android:key="applications_settings"> 21 22 <PreferenceScreen 23 android:key="manage_perms" 24 android:title="@string/app_permissions" 25 settings:keywords="@string/keywords_app_permissions" /> 26 27 <PreferenceCategory 28 android:title="@string/default_apps_title"> 29 30 <PreferenceScreen 31 android:key="domain_urls" 32 android:title="@string/domain_urls_title" 33 android:fragment="com.android.settings.applications.ManageApplications"> 34 <extra 35 android:name="classname" 36 android:value="com.android.settings.Settings$DomainsURLsAppListActivity" /> 37 </PreferenceScreen> 38 39 <Preference 40 android:key="assist_and_voice_input" 41 android:fragment="com.android.settings.applications.ManageAssist" 42 android:title="@string/assist_and_voice_input_title" /> 43 44 <com.android.settings.applications.DefaultHomePreference 45 android:key="default_home" 46 android:title="@string/home_app" 47 android:summary="@string/no_default_home" 48 settings:keywords="@string/keywords_home" /> 49 50 <com.android.settings.applications.DefaultBrowserPreference 51 android:key="default_browser" 52 android:title="@string/default_browser_title" 53 android:summary="@string/default_browser_title_none" /> 54 55 <com.android.settings.applications.DefaultPhonePreference 56 android:key="default_phone_app" 57 android:title="@string/default_phone_title" 58 settings:keywords="@string/keywords_default_phone_app" /> 59 60 <com.android.settings.applications.DefaultEmergencyPreference 61 android:key="default_emergency_app" 62 android:title="@string/default_emergency_app" 63 settings:keywords="@string/keywords_emergency_app" /> 64 65 <com.android.settings.applications.DefaultSmsPreference 66 android:key="default_sms_app" 67 android:title="@string/sms_application_title" 68 settings:keywords="@string/keywords_more_default_sms_app" /> 69 70 </PreferenceCategory> 71 72 <com.android.settings.WorkOnlyCategory 73 android:key="work_defaults" 74 android:title="@string/default_for_work"> 75 76 <com.android.settings.applications.DefaultBrowserPreference 77 android:key="work_default_browser" 78 android:title="@string/default_browser_title" 79 android:summary="@string/default_browser_title_none" 80 settings:forWork="true" /> 81 82 <com.android.settings.applications.DefaultPhonePreference 83 android:key="work_default_phone_app" 84 android:title="@string/default_phone_title" 85 settings:keywords="@string/keywords_default_phone_app" 86 settings:forWork="true" /> 87 88 </com.android.settings.WorkOnlyCategory> 89 90 <PreferenceCategory 91 android:title="@string/advanced_apps"> 92 93 <PreferenceScreen 94 android:key="special_access" 95 android:fragment="com.android.settings.applications.SpecialAccessSettings" 96 android:title="@string/special_access" /> 97 98 </PreferenceCategory> 99 </PreferenceScreen> 100