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/about_settings"> 19 20 <!-- System update settings - launches activity --> 21 <PreferenceScreen android:key="system_update_settings" 22 android:title="@string/system_update_settings_list_item_title" 23 android:summary="@string/system_update_settings_list_item_summary"> 24 <intent android:action="android.settings.SYSTEM_UPDATE_SETTINGS" /> 25 </PreferenceScreen> 26 27 <!-- Device status - launches activity --> 28 <PreferenceScreen android:key="status_info" 29 android:title="@string/device_status" 30 android:summary="@string/device_status_summary"> 31 <intent android:action="android.intent.action.MAIN" 32 android:targetPackage="com.android.settings" 33 android:targetClass="com.android.settings.deviceinfo.Status" /> 34 </PreferenceScreen> 35 36 <PreferenceScreen 37 android:key="power_usage" 38 android:title="@string/power_usage_summary_title" 39 android:summary="@string/power_usage_summary"> 40 <intent android:action="android.intent.action.MAIN" 41 android:targetPackage="com.android.settings" 42 android:targetClass="com.android.settings.fuelgauge.PowerUsageSummary" /> 43 </PreferenceScreen> 44 45 <!-- Legal Information --> 46 <PreferenceScreen 47 android:key="container" 48 android:title="@string/legal_information"> 49 50 <!-- Note: The titles given here probably won't be used. Instead, we programmatically 51 fill the title with the label of the activity with the corresponding action. 52 If there is not an activity for an action, the item will be removed from the 53 list. --> 54 55 <!-- Copyright information --> 56 <PreferenceScreen 57 android:key="copyright" 58 android:title="@string/copyright_title"> 59 <intent android:action="android.settings.COPYRIGHT" /> 60 </PreferenceScreen> 61 62 <!-- License information --> 63 <PreferenceScreen 64 android:key="license" 65 android:title="@string/license_title"> 66 <intent android:action="android.settings.LICENSE" /> 67 </PreferenceScreen> 68 69 <!-- Terms and conditions --> 70 <PreferenceScreen 71 android:key="terms" 72 android:title="@string/terms_title"> 73 <intent android:action="android.settings.TERMS" /> 74 </PreferenceScreen> 75 76 </PreferenceScreen> 77 78 <PreferenceScreen 79 android:key="safetylegal" 80 android:title="@string/settings_safetylegal_title"> 81 <intent android:action="android.settings.SAFETY" /> 82 </PreferenceScreen> 83 84 <!-- Contributors --> 85 <!-- 86 <PreferenceScreen 87 android:key="contributors" 88 android:title="@string/contributors_title"> 89 <intent android:action="android.settings.TEAM" /> 90 </PreferenceScreen> 91 --> 92 <!-- System Tutorial - launches activity --> 93 <PreferenceScreen android:key="system_tutorial" 94 android:title="@string/system_tutorial_list_item_title" 95 android:summary="@string/system_tutorial_list_item_summary"> 96 <intent android:action="android.intent.action.SYSTEM_TUTORIAL" /> 97 </PreferenceScreen> 98 99 <!-- Device hardware model --> 100 <Preference android:key="device_model" 101 style="?android:preferenceInformationStyle" 102 android:title="@string/model_number" 103 android:summary="@string/device_info_default"/> 104 105 <!-- Device firmware version --> 106 <Preference android:key="firmware_version" 107 style="?android:preferenceInformationStyle" 108 android:title="@string/firmware_version" 109 android:summary="@string/device_info_default"/> 110 111 <!-- Device Baseband version --> 112 <Preference android:key="baseband_version" 113 style="?android:preferenceInformationStyle" 114 android:title="@string/baseband_version" 115 android:summary="@string/device_info_default"/> 116 117 <!-- Device Kernel version --> 118 <Preference android:key="kernel_version" 119 style="?android:preferenceInformationStyle" 120 android:title="@string/kernel_version" 121 android:summary="@string/device_info_default"/> 122 123 <!-- Detailed build version --> 124 <Preference android:key="build_number" 125 style="?android:preferenceInformationStyle" 126 android:title="@string/build_number" 127 android:summary="@string/device_info_default"/> 128 129 </PreferenceScreen> 130