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