1<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"> 2 <Preference 3 android:key="@string/build_version_key" 4 android:persistent="false" 5 android:title="@string/build_version_label"/> 6 7 <Preference 8 android:key="@string/open_source_licenses_key" 9 android:persistent="false" 10 android:summary="@string/open_source_license_detail_label" 11 android:title="@string/licenseActivityLabel"> 12 </Preference> 13 14 <Preference 15 android:key="@string/privacy_policy_key" 16 android:persistent="false" 17 android:title="@string/privacy_policy_label"> 18 <intent 19 android:action="android.intent.action.VIEW" 20 android:data="@string/privacy_policy_url"/> 21 </Preference> 22 23 <Preference 24 android:key="@string/terms_of_service_key" 25 android:persistent="false" 26 android:title="@string/terms_of_service_label"> 27 <intent 28 android:action="android.intent.action.VIEW" 29 android:data="@string/terms_of_service_url"/> 30 </Preference> 31</PreferenceScreen> 32