mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-01-12 18:11:57 +01:00
2f89de6250
fix a tab vs. space misalign add missing menu items for Bip U (and possibly others) remove shortcut config from Amazfit Bip U settings add (most) menu items for Amazfit Bip U Co-authored-by: AluminumTank <joel@beckmeyer.us> Reviewed-on: https://codeberg.org/Freeyourgadget/Gadgetbridge/pulls/2107 Co-Authored-By: TinfoilSubmarine <tinfoilsubmarine@noreply.codeberg.org> Co-Committed-By: TinfoilSubmarine <tinfoilsubmarine@noreply.codeberg.org>
22 lines
1.1 KiB
XML
22 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<com.mobeta.android.dslv.DragSortListPreference
|
|
android:icon="@drawable/ic_widgets"
|
|
android:defaultValue="@array/pref_bipu_display_items_default"
|
|
android:dialogTitle="@string/mi2_prefs_display_items"
|
|
android:entries="@array/pref_bipu_display_items"
|
|
android:entryValues="@array/pref_bipu_display_items_values"
|
|
android:key="display_items_sortable"
|
|
android:persistent="true"
|
|
android:summary="@string/mi2_prefs_display_items_summary"
|
|
android:title="@string/mi2_prefs_display_items" />
|
|
<ListPreference
|
|
android:icon="@drawable/ic_language"
|
|
android:defaultValue="auto"
|
|
android:entries="@array/pref_amazfitbip_language"
|
|
android:entryValues="@array/pref_amazfitbip_language_values"
|
|
android:key="language"
|
|
android:summary="%s"
|
|
android:title="@string/pref_title_language" />
|
|
</androidx.preference.PreferenceScreen>
|