mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-02-01 03:32:17 +01:00
19 lines
908 B
XML
19 lines
908 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
||
|
<ListPreference
|
||
|
android:defaultValue="0"
|
||
|
android:entries="@array/miscale_weight_unit_names"
|
||
|
android:entryValues="@array/miscale_weight_unit_values"
|
||
|
android:icon="@drawable/ic_calculate"
|
||
|
android:key="pref_miscale_weight_unit"
|
||
|
android:title="@string/miscale_weight_unit_title"
|
||
|
android:summary="@string/miscale_weight_unit_summary" />
|
||
|
<SwitchPreferenceCompat
|
||
|
android:defaultValue="false"
|
||
|
android:icon="@drawable/ic_pressure"
|
||
|
android:key="pref_miscale_small_objects"
|
||
|
android:layout="@layout/preference_checkbox"
|
||
|
android:title="@string/miscale_small_objects_title"
|
||
|
android:summary="@string/miscale_small_objects_summary" />
|
||
|
</androidx.preference.PreferenceScreen>
|