31 lines
976 B
XML
31 lines
976 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<PreferenceScreen xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:theme="@style/Theme.Beendroid">
|
|
|
|
<ListPreference
|
|
app:enabled="true"
|
|
app:key="@string/key_theme"
|
|
app:icon="@drawable/palette"
|
|
app:title="@string/key_theme"
|
|
app:useSimpleSummaryProvider="true"
|
|
app:entries="@array/entries_theme"
|
|
app:entryValues="@array/entries_theme"
|
|
app:defaultValue="@string/system" />
|
|
|
|
<Preference
|
|
app:enabled="true"
|
|
app:key="@string/licenses"
|
|
app:icon="@drawable/checklist"
|
|
app:title="@string/licenses"
|
|
android:summary="@string/foss_licenses"/>
|
|
|
|
<Preference
|
|
app:enabled="true"
|
|
app:key="@string/about"
|
|
app:icon="@drawable/info"
|
|
app:title="@string/about"
|
|
android:summary="@string/about_beendroid"/>
|
|
|
|
|
|
</PreferenceScreen> |