• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<!--
3  Copyright (C) 2016 The Android Open Source Project
4
5  Licensed under the Apache License, Version 2.0 (the "License");
6  you may not use this file except in compliance with the License.
7  You may obtain a copy of the License at
8
9       http://www.apache.org/licenses/LICENSE-2.0
10
11  Unless required by applicable law or agreed to in writing, software
12  distributed under the License is distributed on an "AS IS" BASIS,
13  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  See the License for the specific language governing permissions and
15  limitations under the License.
16  -->
17
18<PreferenceScreen
19    xmlns:android="http://schemas.android.com/apk/res/android"
20    xmlns:settings="http://schemas.android.com/apk/res/com.android.settings"
21    android:title="@string/app_default_dashboard_title">
22
23    <Preference
24        android:key="assist_and_voice_input"
25        android:title="@string/assist_and_voice_input_title"
26        android:fragment="com.android.settings.applications.assist.ManageAssist"
27        android:order="-20"/>
28
29    <Preference
30        android:key="default_browser"
31        android:title="@string/default_browser_title"
32        android:fragment="com.android.settings.applications.defaultapps.DefaultBrowserPicker"
33        android:order="-19">
34        <extra android:name="for_work" android:value="false"/>
35    </Preference>
36
37    <Preference
38        android:key="default_home"
39        android:title="@string/home_app"
40        android:fragment="com.android.settings.applications.defaultapps.DefaultHomePicker"
41        settings:keywords="@string/keywords_home"
42        android:order="-18"/>
43
44    <Preference
45        android:key="default_phone_app"
46        android:title="@string/default_phone_title"
47        android:fragment="com.android.settings.applications.defaultapps.DefaultPhonePicker"
48        settings:keywords="@string/keywords_default_phone_app"
49        android:order="-17"/>
50
51    <Preference
52        android:key="default_sms_app"
53        android:title="@string/sms_application_title"
54        android:fragment="com.android.settings.applications.defaultapps.DefaultSmsPicker"
55        settings:keywords="@string/keywords_more_default_sms_app"
56        android:order="-16"/>
57
58    <Preference
59        android:key="default_emergency_app"
60        android:title="@string/default_emergency_app"
61        settings:keywords="@string/keywords_emergency_app"
62        android:order="-15"/>
63
64    <!--
65    <Preference
66        android:key="default_notification_asst_app"
67        android:title="@string/default_notification_assistant"
68        android:fragment="com.android.settings.applications.defaultapps.DefaultNotificationAssistantPicker"
69        android:order="-13"/>
70     -->
71
72    <Preference
73        android:key="domain_urls"
74        android:title="@string/domain_urls_title"
75        android:fragment="com.android.settings.applications.ManageDomainUrls"/>
76
77    <com.android.settings.WorkOnlyCategory
78        android:key="work_defaults"
79        android:title="@string/default_for_work">
80
81        <Preference
82            android:key="work_default_browser"
83            android:title="@string/default_browser_title"
84            android:fragment="com.android.settings.applications.defaultapps.DefaultBrowserPicker">
85            <extra android:name="for_work" android:value="true"/>
86        </Preference>
87
88        <Preference
89            android:key="work_default_phone_app"
90            android:title="@string/default_phone_title"
91            android:fragment="com.android.settings.applications.defaultapps.DefaultPhonePicker"
92            settings:keywords="@string/keywords_default_phone_app">
93            <extra android:name="for_work" android:value="true"/>
94        </Preference>
95
96    </com.android.settings.WorkOnlyCategory>
97
98</PreferenceScreen>
99