31 lines
1.5 KiB
XML
31 lines
1.5 KiB
XML
<androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
<com.kabouzeid.appthemehelper.common.prefs.supportv7.ATEPreferenceCategory android:title="@string/pref_header_library">
|
|
|
|
<com.dkanada.gramophone.preferences.CategoryPreference
|
|
app:iconSpaceReserved="false"
|
|
android:key="library_categories"
|
|
android:summary="@string/pref_summary_categories"
|
|
android:title="@string/pref_title_categories" />
|
|
|
|
<com.kabouzeid.appthemehelper.common.prefs.supportv7.ATEListPreference
|
|
app:iconSpaceReserved="false"
|
|
android:defaultValue="100"
|
|
android:entries="@array/pref_page_size_titles"
|
|
android:entryValues="@array/pref_page_size_values"
|
|
android:key="maximum_list_size"
|
|
android:negativeButtonText="@null"
|
|
android:positiveButtonText="@null"
|
|
android:title="@string/pref_title_page_size" />
|
|
|
|
<com.kabouzeid.appthemehelper.common.prefs.supportv7.ATESwitchPreference
|
|
app:iconSpaceReserved="false"
|
|
android:defaultValue="true"
|
|
android:key="remember_last_tab"
|
|
android:summary="@string/pref_summary_remember_tab"
|
|
android:title="@string/pref_title_remember_tab" />
|
|
|
|
</com.kabouzeid.appthemehelper.common.prefs.supportv7.ATEPreferenceCategory>
|
|
|
|
</androidx.preference.PreferenceScreen>
|