mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-12-02 15:02:56 +01:00
9bfef4cf4f
This allows to construct per-device settings by device type very easily device coordinators just do the following to declare which setting they support, the settings activity is then composed at runtime. @Override public int[] getSupportedDeviceSpecificSettings(GBDevice device) { return new int[]{ R.xml.devicesettings_miband3, R.xml.devicesettings_swipeunlock, R.xml.devicesettings_pairingkey }; }
12 lines
417 B
XML
12 lines
417 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<EditTextPreference
|
|
android:icon="@drawable/ic_vpn_key"
|
|
android:key="authkey"
|
|
android:maxLength="16"
|
|
android:summary="@string/pref_summary_authkey"
|
|
android:title="@string/pref_title_authkey" />
|
|
|
|
</androidx.preference.PreferenceScreen>
|