Home | History | Annotate | Download | only in xml
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!-- Copyright (C) 2015 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/legal_information"
     19                   android:key="legal_screen">
     20 
     21     <!-- Note: The titles given here probably won't be used.  Instead, we programmatically
     22        fill the title with the label of the activity with the corresponding action.
     23        If there is not an activity for an action, the item will be removed from the
     24        list. -->
     25 
     26     <!-- Copyright information -->
     27     <Preference
     28         android:key="copyright"
     29         android:title="@string/copyright_title">
     30         <intent android:action="android.settings.COPYRIGHT"/>
     31     </Preference>
     32 
     33     <!-- License information -->
     34     <Preference
     35         android:key="license"
     36         android:title="@string/license_title">
     37         <intent android:action="android.settings.LICENSE"/>
     38     </Preference>
     39 
     40     <!-- Terms and conditions -->
     41     <Preference
     42         android:key="terms"
     43         android:title="@string/terms_title">
     44         <intent android:action="android.settings.TERMS"/>
     45     </Preference>
     46 
     47     <!-- System WebView License information -->
     48     <Preference
     49         android:key="webview_license"
     50         android:title="@string/webview_license_title">
     51         <intent android:action="android.settings.WEBVIEW_LICENSE"/>
     52     </Preference>
     53 
     54     <Preference
     55         android:key="wallpaper_attributions"
     56         android:title="@string/wallpaper_attributions"
     57         android:summary="@string/wallpaper_attributions_values"/>
     58 
     59 </PreferenceScreen>
     60 
     61