OSDN Git Service

Merge "Rename Night display to Night Light" into nyc-mr1-dev
[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                 android:fragment="com.android.settings.deviceinfo.Status">
40         </PreferenceScreen>
41
42         <!-- Manual -->
43         <PreferenceScreen
44                 android:key="manual"
45                 android:title="@string/manual">
46             <intent android:action="android.settings.SHOW_MANUAL" />
47         </PreferenceScreen>
48
49         <!-- Legal Information -->
50         <PreferenceScreen
51                 android:key="container"
52                 android:title="@string/legal_information"
53                 android:fragment="com.android.settings.LegalSettings" />
54
55         <PreferenceScreen
56                 android:key="regulatory_info"
57                 android:title="@string/regulatory_labels">
58             <intent android:action="android.settings.SHOW_REGULATORY_INFO" />
59         </PreferenceScreen>
60
61         <PreferenceScreen
62                 android:key="safety_info"
63                 android:title="@string/safety_and_regulatory_info">
64                 <intent android:action="android.settings.SHOW_SAFETY_AND_REGULATORY_INFO" />
65         </PreferenceScreen>
66
67         <!-- Feedback on the device -->
68         <PreferenceScreen android:key="device_feedback"
69                 android:title="@string/device_feedback">
70         </PreferenceScreen>
71
72         <!-- Device hardware model -->
73         <Preference android:key="device_model"
74                 android:enabled="false"
75                 android:shouldDisableView="false"
76                 android:title="@string/model_number"
77                 android:summary="@string/device_info_default"/>
78
79         <!-- Device firmware version -->
80         <Preference android:key="firmware_version"
81                 android:enabled="false"
82                 android:shouldDisableView="false"
83                 android:title="@string/firmware_version"
84                 android:summary="@string/device_info_default"/>
85
86         <!-- Security patch level -->
87         <Preference android:key="security_patch"
88                 android:enabled="false"
89                 android:shouldDisableView="false"
90                 android:title="@string/security_patch"
91                 android:summary="@string/device_info_default"/>
92
93         <!-- Device FCC equipment id -->
94         <Preference android:key="fcc_equipment_id"
95                 android:enabled="false"
96                 android:shouldDisableView="false"
97                 android:title="@string/fcc_equipment_id"
98                 android:summary="@string/device_info_default"/>
99
100         <!-- Device Baseband version -->
101         <Preference android:key="baseband_version"
102                 android:enabled="false"
103                 android:shouldDisableView="false"
104                 android:title="@string/baseband_version"
105                 android:summary="@string/device_info_default"/>
106
107         <!-- Device Kernel version -->
108         <Preference android:key="kernel_version"
109                 android:enabled="false"
110                 android:shouldDisableView="false"
111                 android:title="@string/kernel_version"
112                 android:summary="@string/device_info_default"/>
113
114         <!-- Detailed build version -->
115         <Preference android:key="build_number"
116                 android:enabled="false"
117                 android:shouldDisableView="false"
118                 android:title="@string/build_number"
119                 android:summary="@string/device_info_default"/>
120
121         <!-- SELinux status information -->
122         <Preference android:key="selinux_status"
123                 android:enabled="false"
124                 android:shouldDisableView="false"
125                 android:title="@string/selinux_status"
126                 android:summary="@string/selinux_status_enforcing"/>
127
128 </PreferenceScreen>