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