mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-12-03 23:42:57 +01:00
876515f1fd
This commit refactors code and implements a custom device specific string filter, which does nothing by default. The implementation in HuamiSupport does the custom emoji conversion. The setting has been moved from devicesettings_amazfitbip.xml to an extra file As soon as there is a custom font for Mi Band 2/3/4 it is sufficient to add "devicesettings_custom_emoji_font.xml" to the list of supported settings in the appropriate coordinator and everything will work.
10 lines
449 B
XML
10 lines
449 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<SwitchPreference
|
|
android:defaultValue="false"
|
|
android:icon="@drawable/ic_font_download"
|
|
android:key="use_custom_font"
|
|
android:summary="@string/pref_summary_use_custom_font"
|
|
android:title="@string/pref_title_use_custom_font" />
|
|
</androidx.preference.PreferenceScreen>
|