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 xmlns:settings="http://schemas.android.com/apk/res-auto" 19 android:title="@string/legal_information"> 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 settings:controller="com.android.settings.deviceinfo.legal.CopyrightPreferenceController" /> 31 32 <!-- License information --> 33 <Preference 34 android:key="license" 35 android:title="@string/license_title" 36 settings:controller="com.android.settings.deviceinfo.legal.LicensePreferenceController" /> 37 38 <!-- Terms and conditions --> 39 <Preference 40 android:key="terms" 41 android:title="@string/terms_title" 42 settings:controller="com.android.settings.deviceinfo.legal.TermsPreferenceController" /> 43 44 <!-- Mainline Module License information --> 45 <Preference 46 android:key="module_license" 47 android:title="@string/module_license_title" 48 android:fragment="com.android.settings.deviceinfo.legal.ModuleLicensesDashboard" 49 settings:controller="com.android.settings.deviceinfo.legal.ModuleLicensesListPreferenceController" /> 50 51 <!-- System WebView License information --> 52 <Preference 53 android:key="webview_license" 54 android:title="@string/webview_license_title" 55 settings:controller="com.android.settings.deviceinfo.legal.WebViewLicensePreferenceController" /> 56 57 <Preference 58 android:key="wallpaper_attributions" 59 android:title="@string/wallpaper_attributions" 60 android:summary="@string/wallpaper_attributions_values" 61 android:selectable="false" 62 settings:controller="com.android.settings.deviceinfo.legal.WallpaperAttributionsPreferenceController" /> 63 64</PreferenceScreen> 65 66