1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3 Copyright (C) 2017 The Android Open Source Project 4 5 Licensed under the Apache License, Version 2.0 (the "License"); 6 you may not use this file except in compliance with the License. 7 You may obtain a copy of the License at 8 9 http://www.apache.org/licenses/LICENSE-2.0 10 11 Unless required by applicable law or agreed to in writing, software 12 distributed under the License is distributed on an "AS IS" BASIS, 13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 See the License for the specific language governing permissions and 15 limitations under the License. 16 --> 17 18<PreferenceScreen 19 xmlns:android="http://schemas.android.com/apk/res/android" 20 xmlns:settings="http://schemas.android.com/apk/res-auto" 21 android:key="device_info_pref_screen" 22 android:title="@string/about_settings"> 23 24 <!-- Phone number --> 25 <Preference 26 android:key="phone_number" 27 android:order="0" 28 android:title="@string/status_number" 29 android:summary="@string/summary_placeholder"/> 30 31 <!-- SIM status --> 32 <Preference 33 android:key="sim_status" 34 android:order="10" 35 android:title="@string/sim_status_title" 36 settings:keywords="@string/keywords_sim_status" 37 android:summary="@string/summary_placeholder"/> 38 39 <!-- Model & hardware --> 40 <Preference 41 android:key="device_model" 42 android:order="21" 43 android:title="@string/hardware_info" 44 settings:keywords="@string/keywords_model_and_hardware" 45 android:summary="@string/summary_placeholder"/> 46 47 <!-- IMEI --> 48 <Preference 49 android:key="imei_info" 50 android:order="22" 51 android:title="@string/status_imei" 52 settings:keywords="@string/keywords_imei_info" 53 android:summary="@string/summary_placeholder"/> 54 55 <!-- Android version --> 56 <Preference 57 android:key="firmware_version" 58 android:order="32" 59 android:title="@string/firmware_version" 60 settings:keywords="@string/keywords_android_version" 61 android:summary="@string/summary_placeholder"/> 62 63 <!--IP address --> 64 <Preference 65 android:key="wifi_ip_address" 66 android:order="34" 67 android:title="@string/wifi_ip_address" 68 android:summary="@string/summary_placeholder" 69 settings:allowDividerAbove="true"/> 70 71 <!-- Wi-Fi MAC address --> 72 <Preference 73 android:key="wifi_mac_address" 74 android:order="35" 75 android:title="@string/status_wifi_mac_address" 76 android:summary="@string/summary_placeholder"/> 77 78 <!-- Bluetooth address --> 79 <Preference 80 android:key="bt_address" 81 android:order="36" 82 android:title="@string/status_bt_address" 83 android:summary="@string/summary_placeholder"/> 84 85 86 <!-- Legal information --> 87 <Preference 88 android:key="legal_container" 89 android:order="37" 90 android:title="@string/legal_information" 91 android:fragment="com.android.settings.LegalSettings" 92 settings:allowDividerAbove="true"/> 93 94 <!-- Regulatory labels --> 95 <Preference 96 android:key="regulatory_info" 97 android:order="38" 98 android:title="@string/regulatory_labels"> 99 <intent android:action="android.settings.SHOW_REGULATORY_INFO"/> 100 </Preference> 101 102 <!-- Safety & regulatory manual --> 103 <Preference 104 android:key="safety_info" 105 android:order="39" 106 android:title="@string/safety_and_regulatory_info"> 107 <intent android:action="android.settings.SHOW_SAFETY_AND_REGULATORY_INFO"/> 108 </Preference> 109 110 <!-- Manual --> 111 <Preference 112 android:key="manual" 113 android:order="40" 114 android:title="@string/manual"> 115 <intent android:action="android.settings.SHOW_MANUAL"/> 116 </Preference> 117 118 <!-- Feedback on the device --> 119 <Preference 120 android:key="device_feedback" 121 android:order="41" 122 android:title="@string/device_feedback"/> 123 124 <!-- Device FCC equipment id --> 125 <Preference 126 android:key="fcc_equipment_id" 127 android:order="42" 128 android:title="@string/fcc_equipment_id" 129 android:summary="@string/summary_placeholder"/> 130 131 <!-- Build number --> 132 <Preference 133 android:key="build_number" 134 android:order="43" 135 android:title="@string/build_number" 136 android:summary="@string/summary_placeholder" 137 settings:allowDividerAbove="true"/> 138 139</PreferenceScreen>