OSDN Git Service

Add safety & regulatory info to "about device".
[android-x86/packages-apps-Settings.git] / res / xml / device_info_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/about_settings">
19
20         <!-- System update settings - launches activity -->
21         <PreferenceScreen android:key="system_update_settings"
22                 android:title="@string/system_update_settings_list_item_title"
23                 android:summary="@string/system_update_settings_list_item_summary">
24             <intent android:action="android.settings.SYSTEM_UPDATE_SETTINGS" />
25         </PreferenceScreen>
26
27
28         <PreferenceScreen android:key="additional_system_update_settings"
29                           android:title="@string/additional_system_update_settings_list_item_title">
30             <intent android:action="android.intent.action.MAIN"
31                     android:targetPackage="@string/additional_system_update"
32                     android:targetClass="@string/additional_system_update_menu" />
33         </PreferenceScreen>
34
35         <!-- Device status - launches activity -->
36         <PreferenceScreen android:key="status_info"
37                 android:title="@string/device_status"
38                 android:summary="@string/device_status_summary">
39             <intent android:action="android.intent.action.MAIN"
40                     android:targetPackage="com.android.settings"
41                     android:targetClass="com.android.settings.deviceinfo.Status" />
42         </PreferenceScreen>
43
44         <!-- Manual -->
45         <PreferenceScreen
46                 android:key="manual"
47                 android:title="@string/manual">
48             <intent android:action="android.settings.SHOW_MANUAL" />
49         </PreferenceScreen>
50
51         <!-- Legal Information -->
52         <PreferenceScreen
53                 android:key="container"
54                 android:title="@string/legal_information"
55                 android:fragment="com.android.settings.LegalSettings" />
56
57         <PreferenceScreen
58                 android:key="regulatory_info"
59                 android:title="@string/regulatory_labels">
60             <intent android:action="android.settings.SHOW_REGULATORY_INFO" />
61         </PreferenceScreen>
62
63         <PreferenceScreen
64                 android:key="safety_info"
65                 android:title="@string/safety_and_regulatory_info">
66                 <intent android:action="android.settings.SHOW_SAFETY_AND_REGULATORY_INFO" />
67         </PreferenceScreen>
68
69         <!-- Feedback on the device -->
70         <PreferenceScreen android:key="device_feedback"
71                 android:title="@string/device_feedback">
72         </PreferenceScreen>
73
74         <!-- Device hardware model -->
75         <Preference android:key="device_model"
76                 android:enabled="false"
77                 android:shouldDisableView="false"
78                 android:title="@string/model_number"
79                 android:summary="@string/device_info_default"/>
80
81         <!-- Device firmware version -->
82         <Preference android:key="firmware_version"
83                 android:enabled="false"
84                 android:shouldDisableView="false"
85                 android:title="@string/firmware_version"
86                 android:summary="@string/device_info_default"/>
87
88         <!-- Security patch level -->
89         <Preference android:key="security_patch"
90                 android:enabled="false"
91                 android:shouldDisableView="false"
92                 android:title="@string/security_patch"
93                 android:summary="@string/device_info_default"/>
94
95         <!-- Device FCC equipment id -->
96         <Preference android:key="fcc_equipment_id"
97                 android:enabled="false"
98                 android:shouldDisableView="false"
99                 android:title="@string/fcc_equipment_id"
100                 android:summary="@string/device_info_default"/>
101
102         <!-- Device Baseband version -->
103         <Preference android:key="baseband_version"
104                 android:enabled="false"
105                 android:shouldDisableView="false"
106                 android:title="@string/baseband_version"
107                 android:summary="@string/device_info_default"/>
108
109         <!-- Device Kernel version -->
110         <Preference android:key="kernel_version"
111                 android:enabled="false"
112                 android:shouldDisableView="false"
113                 android:title="@string/kernel_version"
114                 android:summary="@string/device_info_default"/>
115
116         <!-- Detailed build version -->
117         <Preference android:key="build_number"
118                 android:enabled="false"
119                 android:shouldDisableView="false"
120                 android:title="@string/build_number"
121                 android:summary="@string/device_info_default"/>
122
123         <!-- SELinux status information -->
124         <Preference android:key="selinux_status"
125                 android:enabled="false"
126                 android:shouldDisableView="false"
127                 android:title="@string/selinux_status"
128                 android:summary="@string/selinux_status_enforcing"/>
129
130 </PreferenceScreen>