mirror of
https://github.com/gsantner/dandelion
synced 2024-11-15 17:02:10 +01:00
18 lines
972 B
XML
18 lines
972 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
||
|
<com.github.dfa.diaspora_android.ui.ThemedPreferenceCategory
|
||
|
android:key="@string/pref_key__title__themes"
|
||
|
android:title="@string/pref_title__themes">
|
||
|
<com.github.dfa.diaspora_android.ui.ThemedColorPickerPreference
|
||
|
android:key="@string/pref_key__primary_color__preference_click"
|
||
|
android:summary="@string/pref_desc__primary_color"
|
||
|
android:title="@string/pref_title__primary_color"
|
||
|
android:icon="@drawable/circle" />
|
||
|
|
||
|
<com.github.dfa.diaspora_android.ui.ThemedColorPickerPreference
|
||
|
android:key="@string/pref_key__accent_color__preference_click"
|
||
|
android:summary="@string/pref_desc__accent_color"
|
||
|
android:title="@string/pref_title__accent_color"
|
||
|
android:icon="@drawable/circle" />
|
||
|
</com.github.dfa.diaspora_android.ui.ThemedPreferenceCategory>
|
||
|
</PreferenceScreen>
|