Home | History | Annotate | Download | only in xml
      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/device_status_activity_title">
     19 
     20     <Preference android:key="battery_status" 
     21         style="?android:attr/preferenceInformationStyle" 
     22         android:title="@string/battery_status_title"
     23         android:summary="@string/device_info_not_available"
     24         android:persistent="false" />
     25     <Preference android:key="battery_level" 
     26         style="?android:attr/preferenceInformationStyle" 
     27         android:title="@string/battery_level_title"
     28         android:summary="@string/device_info_not_available"
     29         android:persistent="false" />
     30     <Preference android:key="number" 
     31         style="?android:attr/preferenceInformationStyle" 
     32         android:title="@string/status_number"
     33         android:summary="@string/device_info_not_available"
     34         android:persistent="false" />
     35     <!-- This menu item is only for CDMA phone -->
     36     <Preference android:key="min_number"
     37         style="?android:attr/preferenceInformationStyle"
     38         android:title="@string/status_min_number"
     39         android:summary="@string/device_info_not_available"
     40         android:persistent="false" />
     41     <!-- This menu item is only for CDMA phone -->
     42     <Preference android:key="prl_version"
     43         style="?android:attr/preferenceInformationStyle"
     44         android:title="@string/status_prl_version"
     45         android:summary="@string/device_info_not_available"
     46         android:persistent="false" />
     47     <!-- This menu item is only for CDMA phone -->
     48     <Preference android:key="meid_number"
     49         style="?android:attr/preferenceInformationStyle"
     50         android:title="@string/status_meid_number"
     51         android:summary="@string/device_info_not_available"
     52         android:persistent="false" />
     53     <Preference android:key="operator_name" 
     54         style="?android:attr/preferenceInformationStyle" 
     55         android:title="@string/status_operator"
     56         android:summary="@string/device_info_not_available"
     57         android:persistent="false" />
     58     <Preference android:key="signal_strength"
     59         style="?android:attr/preferenceInformationStyle" 
     60         android:title="@string/status_signal_strength"
     61         android:summary="@string/device_info_not_available"
     62         android:persistent="false" />
     63     <Preference android:key="network_type"
     64         style="?android:attr/preferenceInformationStyle" 
     65         android:title="@string/status_network_type"
     66         android:summary="@string/device_info_not_available"
     67         android:persistent="false" />
     68     <Preference android:key="service_state" 
     69         style="?android:attr/preferenceInformationStyle" 
     70         android:title="@string/status_service_state"
     71         android:summary="@string/device_info_not_available"
     72         android:persistent="false" />
     73     <Preference android:key="roaming_state" 
     74         style="?android:attr/preferenceInformationStyle" 
     75         android:title="@string/status_roaming"
     76         android:summary="@string/device_info_not_available"
     77         android:persistent="false" />
     78     <Preference android:key="data_state"
     79         style="?android:attr/preferenceInformationStyle" 
     80         android:title="@string/status_data_state"
     81         android:summary="@string/device_info_not_available"
     82         android:persistent="false" />
     83     <Preference android:key="imei" 
     84         style="?android:attr/preferenceInformationStyle" 
     85         android:title="@string/status_imei"
     86         android:summary="@string/device_info_not_available"
     87         android:persistent="false" />
     88     <Preference android:key="imei_sv" 
     89         style="?android:attr/preferenceInformationStyle" 
     90         android:title="@string/status_imei_sv"
     91         android:summary="@string/device_info_not_available"
     92         android:persistent="false" />
     93     <Preference android:key="wifi_mac_address"
     94         style="?android:attr/preferenceInformationStyle" 
     95         android:title="@string/status_wifi_mac_address"
     96         android:summary="@string/device_info_not_available"
     97         android:persistent="false" />
     98     <Preference android:key="bt_address"
     99         style="?android:attr/preferenceInformationStyle" 
    100         android:title="@string/status_bt_address"
    101         android:summary="@string/device_info_not_available"
    102         android:persistent="false" />
    103     <Preference android:key="up_time"
    104         style="?android:attr/preferenceInformationStyle" 
    105         android:title="@string/status_up_time"
    106         android:summary="@string/device_info_not_available"
    107         android:persistent="false" />
    108 
    109 </PreferenceScreen>
    110