blob: 88b8d2f7e94a2b4cb42da95dd291b50c98fb3bc5 [file] [log] [blame]
Fan Zhangcc335d92016-09-29 14:37:14 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2016 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
Fan Zhangc6540cf2016-10-03 17:11:11 -070017<PreferenceScreen
18 xmlns:android="http://schemas.android.com/apk/res/android"
Doris Ling8b14a1a2017-08-17 14:45:12 -070019 xmlns:settings="http://schemas.android.com/apk/res-auto"
Edgar Wang77de4052020-02-14 17:58:38 +080020 android:key="system_dashboard_screen"
Doris Ling8b14a1a2017-08-17 14:45:12 -070021 android:title="@string/header_category_system"
22 settings:initialExpandedChildrenCount="4">
Fan Zhangcc335d92016-09-29 14:37:14 -070023
Doris Ling204ca742017-07-18 15:43:26 -070024 <Preference
Raff Tsai9e3a9fd2019-10-01 17:06:26 +080025 android:key="language_input_settings"
26 android:title="@string/language_settings"
27 android:icon="@drawable/ic_settings_language"
28 android:order="-260"
29 android:fragment="com.android.settings.language.LanguageAndInputSettings"
30 settings:controller="com.android.settings.language.LanguageAndInputPreferenceController"/>
31
32 <Preference
Doris Ling204ca742017-07-18 15:43:26 -070033 android:key="gesture_settings"
34 android:title="@string/gesture_preference_title"
35 android:icon="@drawable/ic_settings_gestures"
36 android:order="-250"
Matthew Fritze7d2b4f52017-12-11 09:57:54 -080037 android:fragment="com.android.settings.gestures.GestureSettings"
38 settings:controller="com.android.settings.gestures.GesturesSettingPreferenceController"/>
Doris Ling204ca742017-07-18 15:43:26 -070039
Fan Zhangc24930a2018-01-25 12:38:04 -080040 <Preference
Raff Tsai9e3a9fd2019-10-01 17:06:26 +080041 android:key="date_time_settings"
42 android:title="@string/date_and_time"
43 android:icon="@drawable/ic_settings_date_time"
44 android:order="-240"
45 android:fragment="com.android.settings.datetime.DateTimeSettings"
46 settings:controller="com.android.settings.datetime.DateTimePreferenceController"/>
47
48 <Preference
Fan Zhangc24930a2018-01-25 12:38:04 -080049 android:key="reset_dashboard"
50 android:title="@string/reset_dashboard_title"
51 android:summary="@string/reset_dashboard_summary"
52 android:icon="@drawable/ic_restore"
53 android:order="-50"
Ben Lina53001d2018-03-07 15:24:37 -080054 android:fragment="com.android.settings.system.ResetDashboardFragment"
55 settings:controller="com.android.settings.system.ResetPreferenceController"/>
Fan Zhangc24930a2018-01-25 12:38:04 -080056
Fan Zhangcc335d92016-09-29 14:37:14 -070057 <!-- System updates -->
Fan Zhangbe2ac272016-10-17 10:16:04 -070058 <Preference
Fan Zhangcc335d92016-09-29 14:37:14 -070059 android:key="system_update_settings"
60 android:title="@string/system_update_settings_list_item_title"
Fan Zhang3720e0c2017-03-21 15:15:27 -070061 android:summary="@string/summary_placeholder"
Doris Lingf1c4b452017-01-05 16:39:09 -080062 android:icon="@drawable/ic_system_update"
Matthew Fritze7d2b4f52017-12-11 09:57:54 -080063 android:order="-30"
Matthew Fritze5c5a9212018-03-21 13:46:11 -070064 settings:keywords="@string/keywords_system_update_settings"
Fan Zhang5c269992018-01-30 13:07:39 -080065 settings:controller="com.android.settings.system.SystemUpdatePreferenceController">
Raff Tsai9e3a9fd2019-10-01 17:06:26 +080066 <intent android:action="android.settings.SYSTEM_UPDATE_SETTINGS"/>
Fan Zhangbe2ac272016-10-17 10:16:04 -070067 </Preference>
Fan Zhangcc335d92016-09-29 14:37:14 -070068
Fan Zhangbe2ac272016-10-17 10:16:04 -070069 <Preference
Fan Zhang9c1fcf92016-10-03 11:05:08 -070070 android:key="additional_system_update_settings"
71 android:title="@string/additional_system_update_settings_list_item_title"
Matthew Fritze7d2b4f52017-12-11 09:57:54 -080072 android:order="-31"
Fan Zhang5c269992018-01-30 13:07:39 -080073 settings:controller="com.android.settings.system.AdditionalSystemUpdatePreferenceController">
Fan Zhang9c1fcf92016-10-03 11:05:08 -070074 <intent android:action="android.intent.action.MAIN"
75 android:targetPackage="@string/additional_system_update"
Raff Tsai9e3a9fd2019-10-01 17:06:26 +080076 android:targetClass="@string/additional_system_update_menu"/>
Fan Zhangbe2ac272016-10-17 10:16:04 -070077 </Preference>
Fan Zhang9c1fcf92016-10-03 11:05:08 -070078
Edgar Wang77de4052020-02-14 17:58:38 +080079</PreferenceScreen>