Grid size preference

This commit is contained in:
Koitharu
2020-02-29 13:43:22 +02:00
parent ad201d2bcd
commit 5c3242c511
8 changed files with 63 additions and 3 deletions

View File

@@ -9,13 +9,25 @@
android:entryValues="@array/values_theme"
android:key="@string/key_theme"
android:title="@string/theme"
app:allowDividerBelow="true"
app:iconSpaceReserved="false" />
<Preference
android:key="@string/key_list_mode"
android:persistent="false"
android:title="@string/list_mode"
app:allowDividerAbove="true"
app:iconSpaceReserved="false" />
<SeekBarPreference
android:key="@string/key_grid_size"
android:title="@string/grid_size"
app:iconSpaceReserved="false"
app:defaultValue="100"
app:min="50"
app:showSeekBarValue="false"
app:updatesContinuously="true"
app:seekBarIncrement="10"
app:allowDividerBelow="true"
android:max="150" />
</PreferenceScreen>