The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 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 | |
The Android Open Source Project | 1feaa85 | 2009-02-10 15:44:05 -0800 | [diff] [blame^] | 17 | <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" |
| 18 | android:title="@string/device_status_activity_title"> |
| 19 | |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 20 | <Preference android:key="battery_status" |
| 21 | style="?android:attr/preferenceInformationStyle" |
| 22 | android:title="@string/battery_status_title" |
The Android Open Source Project | 5962e18 | 2009-01-09 17:51:25 -0800 | [diff] [blame] | 23 | android:summary="@string/device_info_not_available" |
| 24 | android:persistent="false" /> |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 25 | <Preference android:key="battery_level" |
| 26 | style="?android:attr/preferenceInformationStyle" |
| 27 | android:title="@string/battery_level_title" |
The Android Open Source Project | 5962e18 | 2009-01-09 17:51:25 -0800 | [diff] [blame] | 28 | android:summary="@string/device_info_not_available" |
| 29 | android:persistent="false" /> |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 30 | <Preference android:key="number" |
| 31 | style="?android:attr/preferenceInformationStyle" |
| 32 | android:title="@string/status_number" |
The Android Open Source Project | 5962e18 | 2009-01-09 17:51:25 -0800 | [diff] [blame] | 33 | android:summary="@string/device_info_not_available" |
| 34 | android:persistent="false" /> |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 35 | <Preference android:key="operator_name" |
| 36 | style="?android:attr/preferenceInformationStyle" |
| 37 | android:title="@string/status_operator" |
The Android Open Source Project | 5962e18 | 2009-01-09 17:51:25 -0800 | [diff] [blame] | 38 | android:summary="@string/device_info_not_available" |
| 39 | android:persistent="false" /> |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 40 | <Preference android:key="signal_strength" |
| 41 | style="?android:attr/preferenceInformationStyle" |
| 42 | android:title="@string/status_signal_strength" |
The Android Open Source Project | 5962e18 | 2009-01-09 17:51:25 -0800 | [diff] [blame] | 43 | android:summary="@string/device_info_not_available" |
| 44 | android:persistent="false" /> |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 45 | <Preference android:key="network_type" |
| 46 | style="?android:attr/preferenceInformationStyle" |
| 47 | android:title="@string/status_network_type" |
The Android Open Source Project | 5962e18 | 2009-01-09 17:51:25 -0800 | [diff] [blame] | 48 | android:summary="@string/device_info_not_available" |
| 49 | android:persistent="false" /> |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 50 | <Preference android:key="service_state" |
| 51 | style="?android:attr/preferenceInformationStyle" |
| 52 | android:title="@string/status_service_state" |
The Android Open Source Project | 5962e18 | 2009-01-09 17:51:25 -0800 | [diff] [blame] | 53 | android:summary="@string/device_info_not_available" |
| 54 | android:persistent="false" /> |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 55 | <Preference android:key="roaming_state" |
| 56 | style="?android:attr/preferenceInformationStyle" |
| 57 | android:title="@string/status_roaming" |
The Android Open Source Project | 5962e18 | 2009-01-09 17:51:25 -0800 | [diff] [blame] | 58 | android:summary="@string/device_info_not_available" |
| 59 | android:persistent="false" /> |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 60 | <Preference android:key="data_state" |
| 61 | style="?android:attr/preferenceInformationStyle" |
| 62 | android:title="@string/status_data_state" |
The Android Open Source Project | 5962e18 | 2009-01-09 17:51:25 -0800 | [diff] [blame] | 63 | android:summary="@string/device_info_not_available" |
| 64 | android:persistent="false" /> |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 65 | <Preference android:key="imei" |
| 66 | style="?android:attr/preferenceInformationStyle" |
| 67 | android:title="@string/status_imei" |
The Android Open Source Project | 5962e18 | 2009-01-09 17:51:25 -0800 | [diff] [blame] | 68 | android:summary="@string/device_info_not_available" |
| 69 | android:persistent="false" /> |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 70 | <Preference android:key="imei_sv" |
| 71 | style="?android:attr/preferenceInformationStyle" |
| 72 | android:title="@string/status_imei_sv" |
The Android Open Source Project | 5962e18 | 2009-01-09 17:51:25 -0800 | [diff] [blame] | 73 | android:summary="@string/device_info_not_available" |
| 74 | android:persistent="false" /> |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 75 | <Preference android:key="imsi" |
| 76 | style="?android:attr/preferenceInformationStyle" |
| 77 | android:title="@string/status_imsi" |
The Android Open Source Project | 5962e18 | 2009-01-09 17:51:25 -0800 | [diff] [blame] | 78 | android:summary="@string/device_info_not_available" |
| 79 | android:persistent="false" /> |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 80 | <Preference android:key="wifi_mac_address" |
| 81 | style="?android:attr/preferenceInformationStyle" |
| 82 | android:title="@string/status_wifi_mac_address" |
The Android Open Source Project | 5962e18 | 2009-01-09 17:51:25 -0800 | [diff] [blame] | 83 | android:summary="@string/device_info_not_available" |
| 84 | android:persistent="false" /> |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 85 | <Preference android:key="bt_address" |
| 86 | style="?android:attr/preferenceInformationStyle" |
| 87 | android:title="@string/status_bt_address" |
The Android Open Source Project | 5962e18 | 2009-01-09 17:51:25 -0800 | [diff] [blame] | 88 | android:summary="@string/device_info_not_available" |
| 89 | android:persistent="false" /> |
The Android Open Source Project | 1feaa85 | 2009-02-10 15:44:05 -0800 | [diff] [blame^] | 90 | <Preference android:key="network_traffic_stats" |
| 91 | style="?android:attr/preferenceInformationStyle" |
| 92 | android:title="@string/status_network_traffic_stats" |
| 93 | android:summary="@string/device_info_not_available" |
| 94 | android:persistent="false" /> |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 95 | <Preference android:key="up_time" |
| 96 | style="?android:attr/preferenceInformationStyle" |
| 97 | android:title="@string/status_up_time" |
The Android Open Source Project | 5962e18 | 2009-01-09 17:51:25 -0800 | [diff] [blame] | 98 | android:summary="@string/device_info_not_available" |
| 99 | android:persistent="false" /> |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 100 | <Preference android:key="awake_time" |
| 101 | style="?android:attr/preferenceInformationStyle" |
| 102 | android:title="@string/status_awake_time" |
The Android Open Source Project | 5962e18 | 2009-01-09 17:51:25 -0800 | [diff] [blame] | 103 | android:summary="@string/device_info_not_available" |
| 104 | android:persistent="false" /> |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 105 | |
| 106 | </PreferenceScreen> |