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 18 xmlns:android="http://schemas.android.com/apk/res/android" 19 android:key="device_status_screen" 20 android:title="@string/device_status_activity_title"> 21 22 <Preference 23 android:key="battery_status" 24 android:enabled="false" 25 android:shouldDisableView="false" 26 android:title="@string/battery_status_title" 27 android:summary="@string/summary_placeholder" /> 28 <Preference 29 android:key="battery_level" 30 android:enabled="false" 31 android:shouldDisableView="false" 32 android:title="@string/battery_level_title" 33 android:summary="@string/summary_placeholder" 34 android:persistent="false" /> 35 <Preference 36 android:key="sim_status" 37 android:title="@string/sim_status_title" 38 android:persistent="false"> 39 <intent 40 android:targetPackage="com.android.settings" 41 android:targetClass="com.android.settings.Settings$SimStatusActivity" /> 42 </Preference> 43 <Preference 44 android:key="imei_info" 45 android:title="@string/imei_information_title" 46 android:persistent="false"> 47 <intent 48 android:targetPackage="com.android.settings" 49 android:targetClass="com.android.settings.Settings$ImeiInformationActivity" /> 50 </Preference> 51 <Preference 52 android:key="wifi_ip_address" 53 android:enabled="false" 54 android:shouldDisableView="false" 55 android:title="@string/wifi_advanced_ip_address_title" 56 android:summary="@string/summary_placeholder" 57 android:persistent="false" /> 58 <Preference 59 android:key="wifi_mac_address" 60 android:enabled="false" 61 android:shouldDisableView="false" 62 android:title="@string/status_wifi_mac_address" 63 android:summary="@string/summary_placeholder" 64 android:persistent="false" /> 65 <Preference 66 android:key="bt_address" 67 android:enabled="false" 68 android:shouldDisableView="false" 69 android:title="@string/status_bt_address" 70 android:summary="@string/summary_placeholder" 71 android:persistent="false" /> 72 <Preference 73 android:key="serial_number" 74 android:enabled="false" 75 android:shouldDisableView="false" 76 android:title="@string/status_serial_number" 77 android:summary="@string/summary_placeholder" 78 android:persistent="false" /> 79 <Preference 80 android:key="up_time" 81 android:enabled="false" 82 android:shouldDisableView="false" 83 android:title="@string/status_up_time" 84 android:summary="@string/summary_placeholder" 85 android:persistent="false" /> 86 <Preference 87 android:key="ims_reg_state" 88 android:enabled="false" 89 android:shouldDisableView="false" 90 android:title="@string/ims_reg_title" 91 android:persistent="false" /> 92</PreferenceScreen> 93