OSDN Git Service

am 46f4b754: Merge "Enlarge texts and fit the other elements" into honeycomb
[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         <!-- Device status - launches activity -->
28         <PreferenceScreen android:key="status_info"
29                 android:title="@string/device_status" 
30                 android:summary="@string/device_status_summary">
31             <intent android:action="android.intent.action.MAIN"
32                     android:targetPackage="com.android.settings"
33                     android:targetClass="com.android.settings.deviceinfo.Status" />
34         </PreferenceScreen>
35         
36         <PreferenceScreen
37                 android:key="power_usage"
38                 android:fragment="com.android.settings.fuelgauge.PowerUsageSummary"
39                 android:title="@string/power_usage_summary_title"
40                 android:summary="@string/power_usage_summary">
41         </PreferenceScreen>
42
43         <!-- Legal Information -->
44         <PreferenceScreen
45                 android:key="container"
46                 android:title="@string/legal_information">
47                     
48             <!-- Note: The titles given here probably won't be used.  Instead, we programmatically
49                        fill the title with the label of the activity with the corresponding action.
50                        If there is not an activity for an action, the item will be removed from the
51                        list. -->
52
53             <!-- Copyright information -->
54             <PreferenceScreen
55                     android:key="copyright"
56                     android:title="@string/copyright_title">
57                 <intent android:action="android.settings.COPYRIGHT" />
58             </PreferenceScreen>
59
60             <!-- License information -->
61             <PreferenceScreen
62                     android:key="license"
63                     android:title="@string/license_title">
64                 <intent android:action="android.settings.LICENSE" />
65             </PreferenceScreen>
66
67             <!-- Terms and conditions -->
68             <PreferenceScreen
69                     android:key="terms"
70                     android:title="@string/terms_title">
71                 <intent android:action="android.settings.TERMS" />
72             </PreferenceScreen>
73
74         </PreferenceScreen>
75         
76         <PreferenceScreen
77                 android:key="safetylegal"
78                 android:title="@string/settings_safetylegal_title">
79             <intent android:action="android.settings.SAFETY" />
80         </PreferenceScreen>
81
82         <!-- Contributors -->
83         <!-- 
84         <PreferenceScreen
85                 android:key="contributors"
86                 android:title="@string/contributors_title">
87             <intent android:action="android.settings.TEAM" />
88         </PreferenceScreen>
89         -->
90         <!-- System Tutorial - launches activity -->
91         <PreferenceScreen android:key="system_tutorial"
92                 android:title="@string/system_tutorial_list_item_title" 
93                 android:summary="@string/system_tutorial_list_item_summary">
94             <intent android:action="android.intent.action.SYSTEM_TUTORIAL" />
95         </PreferenceScreen>
96         
97         <!-- Device hardware model -->
98         <Preference android:key="device_model" 
99                 style="?android:preferenceInformationStyle"
100                 android:title="@string/model_number"
101                 android:summary="@string/device_info_default"/>
102                 
103         <!-- Device firmware version -->
104         <Preference android:key="firmware_version" 
105                 style="?android:preferenceInformationStyle"
106                 android:title="@string/firmware_version"
107                 android:summary="@string/device_info_default"/>
108                 
109         <!-- Device Baseband version -->
110         <Preference android:key="baseband_version" 
111                 style="?android:preferenceInformationStyle"
112                 android:title="@string/baseband_version"
113                 android:summary="@string/device_info_default"/>
114         
115         <!-- Device Kernel version -->
116         <Preference android:key="kernel_version" 
117                 style="?android:preferenceInformationStyle"
118                 android:title="@string/kernel_version"
119                 android:summary="@string/device_info_default"/>
120
121         <!-- Detailed build version -->
122         <Preference android:key="build_number" 
123                 style="?android:preferenceInformationStyle"
124                 android:title="@string/build_number"
125                 android:summary="@string/device_info_default"/>
126
127 </PreferenceScreen>