blob: 205e5884f486ddba6a45823fb9990603a8ab850e [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
The Android Open Source Project1feaa852009-02-10 15:44:05 -080017<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
18 android:title="@string/about_settings">
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -070019
The Android Open Source Projectabc48f82008-12-17 18:06:01 -080020 <!-- 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
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -070027 <!-- 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 <!-- Legal Information -->
37 <PreferenceScreen
38 android:key="container"
39 android:title="@string/legal_information">
40
41 <!-- Title for this other screen -->
42 <PreferenceCategory android:title="@string/legal_information" />
43
44 <!-- Note: The titles given here probably won't be used. Instead, we programmatically
45 fill the title with the label of the activity with the corresponding action.
46 If there is not an activity for an action, the item will be removed from the
47 list. -->
48
49 <!-- Copyright information -->
50 <PreferenceScreen
51 android:key="copyright"
52 android:title="@string/copyright_title">
53 <intent android:action="android.settings.COPYRIGHT" />
54 </PreferenceScreen>
55
56 <!-- License information -->
57 <PreferenceScreen
58 android:key="license"
59 android:title="@string/license_title">
60 <intent android:action="android.settings.LICENSE" />
61 </PreferenceScreen>
62
63 <!-- Terms and conditions -->
64 <PreferenceScreen
65 android:key="terms"
66 android:title="@string/terms_title">
67 <intent android:action="android.settings.TERMS" />
68 </PreferenceScreen>
69
70 </PreferenceScreen>
71
72 <!-- Contributors -->
73 <PreferenceScreen
74 android:key="contributors"
75 android:title="@string/contributors_title">
76 <intent android:action="android.settings.TEAM" />
77 </PreferenceScreen>
78
79 <!-- Device hardware model -->
80 <Preference android:key="device_model"
81 style="?android:preferenceInformationStyle"
82 android:title="@string/model_number"
83 android:summary="@string/device_info_default"/>
84
85 <!-- Device firmware version -->
86 <Preference android:key="firmware_version"
87 style="?android:preferenceInformationStyle"
88 android:title="@string/firmware_version"
89 android:summary="@string/device_info_default"/>
90
91 <!-- Device Baseband version -->
92 <Preference android:key="baseband_version"
93 style="?android:preferenceInformationStyle"
94 android:title="@string/baseband_version"
95 android:summary="@string/device_info_default"/>
96
97 <!-- Device Kernel version -->
98 <Preference android:key="kernel_version"
99 style="?android:preferenceInformationStyle"
100 android:title="@string/kernel_version"
101 android:summary="@string/device_info_default"/>
102
103 <!-- Detailed build version -->
104 <Preference android:key="build_number"
105 style="?android:preferenceInformationStyle"
106 android:title="@string/build_number"
107 android:summary="@string/device_info_default"/>
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -0700108
109</PreferenceScreen>