• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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        <!-- Legal Information -->
37        <PreferenceScreen
38                android:key="container"
39                android:title="@string/legal_information">
40
41            <!-- Note: The titles given here probably won't be used.  Instead, we programmatically
42                       fill the title with the label of the activity with the corresponding action.
43                       If there is not an activity for an action, the item will be removed from the
44                       list. -->
45
46            <!-- Copyright information -->
47            <PreferenceScreen
48                    android:key="copyright"
49                    android:title="@string/copyright_title">
50                <intent android:action="android.settings.COPYRIGHT" />
51            </PreferenceScreen>
52
53            <!-- License information -->
54            <PreferenceScreen
55                    android:key="license"
56                    android:title="@string/license_title">
57                <intent android:action="android.settings.LICENSE" />
58            </PreferenceScreen>
59
60            <!-- Terms and conditions -->
61            <PreferenceScreen
62                    android:key="terms"
63                    android:title="@string/terms_title">
64                <intent android:action="android.settings.TERMS" />
65            </PreferenceScreen>
66
67        </PreferenceScreen>
68
69        <PreferenceScreen
70                android:key="safetylegal"
71                android:title="@string/settings_safetylegal_title">
72            <intent android:action="android.settings.SAFETY" />
73        </PreferenceScreen>
74
75        <!-- Contributors -->
76        <!--
77        <PreferenceScreen
78                android:key="contributors"
79                android:title="@string/contributors_title">
80            <intent android:action="android.settings.TEAM" />
81        </PreferenceScreen>
82        -->
83        <!-- System Tutorial - launches activity -->
84        <PreferenceScreen android:key="system_tutorial"
85                android:title="@string/system_tutorial_list_item_title"
86                android:summary="@string/system_tutorial_list_item_summary">
87            <intent android:action="android.intent.action.SYSTEM_TUTORIAL" />
88        </PreferenceScreen>
89
90        <!-- Device hardware model -->
91        <Preference android:key="device_model"
92                style="?android:preferenceInformationStyle"
93                android:title="@string/model_number"
94                android:summary="@string/device_info_default"/>
95
96        <!-- Device firmware version -->
97        <Preference android:key="firmware_version"
98                style="?android:preferenceInformationStyle"
99                android:title="@string/firmware_version"
100                android:summary="@string/device_info_default"/>
101
102        <!-- Device Baseband version -->
103        <Preference android:key="baseband_version"
104                style="?android:preferenceInformationStyle"
105                android:title="@string/baseband_version"
106                android:summary="@string/device_info_default"/>
107
108        <!-- Device Kernel version -->
109        <Preference android:key="kernel_version"
110                style="?android:preferenceInformationStyle"
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                style="?android:preferenceInformationStyle"
117                android:title="@string/build_number"
118                android:summary="@string/device_info_default"/>
119
120</PreferenceScreen>
121