blob: 95377953ed1d13d0d58061a18ed51407560c64e5 [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/device_status_activity_title">
19
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -070020 <Preference android:key="battery_status"
21 style="?android:attr/preferenceInformationStyle"
22 android:title="@string/battery_status_title"
The Android Open Source Project5962e182009-01-09 17:51:25 -080023 android:summary="@string/device_info_not_available"
24 android:persistent="false" />
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -070025 <Preference android:key="battery_level"
26 style="?android:attr/preferenceInformationStyle"
27 android:title="@string/battery_level_title"
The Android Open Source Project5962e182009-01-09 17:51:25 -080028 android:summary="@string/device_info_not_available"
29 android:persistent="false" />
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -070030 <Preference android:key="number"
31 style="?android:attr/preferenceInformationStyle"
32 android:title="@string/status_number"
The Android Open Source Project5962e182009-01-09 17:51:25 -080033 android:summary="@string/device_info_not_available"
34 android:persistent="false" />
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -070035 <Preference android:key="operator_name"
36 style="?android:attr/preferenceInformationStyle"
37 android:title="@string/status_operator"
The Android Open Source Project5962e182009-01-09 17:51:25 -080038 android:summary="@string/device_info_not_available"
39 android:persistent="false" />
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -070040 <Preference android:key="signal_strength"
41 style="?android:attr/preferenceInformationStyle"
42 android:title="@string/status_signal_strength"
The Android Open Source Project5962e182009-01-09 17:51:25 -080043 android:summary="@string/device_info_not_available"
44 android:persistent="false" />
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -070045 <Preference android:key="network_type"
46 style="?android:attr/preferenceInformationStyle"
47 android:title="@string/status_network_type"
The Android Open Source Project5962e182009-01-09 17:51:25 -080048 android:summary="@string/device_info_not_available"
49 android:persistent="false" />
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -070050 <Preference android:key="service_state"
51 style="?android:attr/preferenceInformationStyle"
52 android:title="@string/status_service_state"
The Android Open Source Project5962e182009-01-09 17:51:25 -080053 android:summary="@string/device_info_not_available"
54 android:persistent="false" />
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -070055 <Preference android:key="roaming_state"
56 style="?android:attr/preferenceInformationStyle"
57 android:title="@string/status_roaming"
The Android Open Source Project5962e182009-01-09 17:51:25 -080058 android:summary="@string/device_info_not_available"
59 android:persistent="false" />
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -070060 <Preference android:key="data_state"
61 style="?android:attr/preferenceInformationStyle"
62 android:title="@string/status_data_state"
The Android Open Source Project5962e182009-01-09 17:51:25 -080063 android:summary="@string/device_info_not_available"
64 android:persistent="false" />
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -070065 <Preference android:key="imei"
66 style="?android:attr/preferenceInformationStyle"
67 android:title="@string/status_imei"
The Android Open Source Project5962e182009-01-09 17:51:25 -080068 android:summary="@string/device_info_not_available"
69 android:persistent="false" />
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -070070 <Preference android:key="imei_sv"
71 style="?android:attr/preferenceInformationStyle"
72 android:title="@string/status_imei_sv"
The Android Open Source Project5962e182009-01-09 17:51:25 -080073 android:summary="@string/device_info_not_available"
74 android:persistent="false" />
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -070075 <Preference android:key="wifi_mac_address"
76 style="?android:attr/preferenceInformationStyle"
77 android:title="@string/status_wifi_mac_address"
The Android Open Source Project5962e182009-01-09 17:51:25 -080078 android:summary="@string/device_info_not_available"
79 android:persistent="false" />
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -070080 <Preference android:key="bt_address"
81 style="?android:attr/preferenceInformationStyle"
82 android:title="@string/status_bt_address"
The Android Open Source Project5962e182009-01-09 17:51:25 -080083 android:summary="@string/device_info_not_available"
84 android:persistent="false" />
The Android Open Source Project1feaa852009-02-10 15:44:05 -080085 <Preference android:key="network_traffic_stats"
86 style="?android:attr/preferenceInformationStyle"
87 android:title="@string/status_network_traffic_stats"
88 android:summary="@string/device_info_not_available"
89 android:persistent="false" />
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -070090 <Preference android:key="up_time"
91 style="?android:attr/preferenceInformationStyle"
92 android:title="@string/status_up_time"
The Android Open Source Project5962e182009-01-09 17:51:25 -080093 android:summary="@string/device_info_not_available"
94 android:persistent="false" />
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -070095 <Preference android:key="awake_time"
96 style="?android:attr/preferenceInformationStyle"
97 android:title="@string/status_awake_time"
The Android Open Source Project5962e182009-01-09 17:51:25 -080098 android:summary="@string/device_info_not_available"
99 android:persistent="false" />
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -0700100
101</PreferenceScreen>