blob: c39d51e14a8a5da7fb9c4f3cc40700657544d6db [file] [log] [blame]
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -07001<?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 <PreferenceCategory android:title="@string/about_settings">
19
20 <!-- Device status - launches activity -->
21 <PreferenceScreen android:key="status_info"
22 android:title="@string/device_status"
23 android:summary="@string/device_status_summary">
24 <intent android:action="android.intent.action.MAIN"
25 android:targetPackage="com.android.settings"
26 android:targetClass="com.android.settings.deviceinfo.Status" />
27 </PreferenceScreen>
28
29 <!-- Legal Information -->
30 <PreferenceScreen
31 android:key="container"
32 android:title="@string/legal_information">
33
34 <!-- Title for this other screen -->
35 <PreferenceCategory android:title="@string/legal_information" />
36
37 <!-- Note: The titles given here probably won't be used. Instead, we programmatically
38 fill the title with the label of the activity with the corresponding action.
39 If there is not an activity for an action, the item will be removed from the
40 list. -->
41
42 <!-- Copyright information -->
43 <PreferenceScreen
44 android:key="copyright"
45 android:title="@string/copyright_title">
46 <intent android:action="android.settings.COPYRIGHT" />
47 </PreferenceScreen>
48
49 <!-- License information -->
50 <PreferenceScreen
51 android:key="license"
52 android:title="@string/license_title">
53 <intent android:action="android.settings.LICENSE" />
54 </PreferenceScreen>
55
56 <!-- Terms and conditions -->
57 <PreferenceScreen
58 android:key="terms"
59 android:title="@string/terms_title">
60 <intent android:action="android.settings.TERMS" />
61 </PreferenceScreen>
62
63 </PreferenceScreen>
64
65 <!-- Contributors -->
66 <PreferenceScreen
67 android:key="contributors"
68 android:title="@string/contributors_title">
69 <intent android:action="android.settings.TEAM" />
70 </PreferenceScreen>
71
72 <!-- Device hardware model -->
73 <Preference android:key="device_model"
74 style="?android:preferenceInformationStyle"
75 android:title="@string/model_number"
76 android:summary="@string/device_info_default"/>
77
78 <!-- Device firmware version -->
79 <Preference android:key="firmware_version"
80 style="?android:preferenceInformationStyle"
81 android:title="@string/firmware_version"
82 android:summary="@string/device_info_default"/>
83
84 <!-- Device Baseband version -->
85 <Preference android:key="baseband_version"
86 style="?android:preferenceInformationStyle"
87 android:title="@string/baseband_version"
88 android:summary="@string/device_info_default"/>
89
90 <!-- Device Kernel version -->
91 <Preference android:key="kernel_version"
92 style="?android:preferenceInformationStyle"
93 android:title="@string/kernel_version"
94 android:summary="@string/device_info_default"/>
95
96 <!-- Detailed build version -->
97 <Preference android:key="build_number"
98 style="?android:preferenceInformationStyle"
99 android:title="@string/build_number"
100 android:summary="@string/device_info_default"/>
101
102 </PreferenceCategory>
103
104</PreferenceScreen>