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