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