mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-01-31 11:12:06 +01:00
84e452bd6b
Mostly copied from the Buds Pro as those earbuds have a similar feature set and mostly the same protocol. Working: - Pairing - Earbud and case battery level - Finding lost device - Settings: - Noise control: - ANC/ambient/off - With one earbud - Voice detect and timeouts - Ambient sound during calls - Touch options: - Touch lock - Switch noise control, voice assistant, Spotify and volume actions - Double tap edge - Equalizer - Sound balance - Seamless earbud connection Can be improved: - ~~ANC level and ambient sound volume do nothing, and don't seem to be supported on this model as there is no toggle for either in the official app.~~ (fixed:26a9d274ae
) - Ambient sound customization has more options than on previous models, but I can't implement it properly as I can't really hear any difference between the options (my buds might be the issue though). - ~~The touch lock toggle is once again inverted, like on the [Buds2](d2c4990c48
)~~ (fixed:21db5390c1
). Untested: - Settings: - In-ear detection for calls - Ambient sound customization - Game mode This PR also makes some visual changes to the settings of various Galaxy Buds models. I'd also like to be added to the wiki's allow list. I want to add the Buds2 and Buds2 Pro to the list of supported devices. --- And sorry for creating this many pull requests. This is mostly due to Codeberg breaking the reference to the branch. Co-authored-by: Narek <narek.email@gmail.com> Reviewed-on: https://codeberg.org/Freeyourgadget/Gadgetbridge/pulls/3049 Reviewed-by: José Rebelo <joserebelo@noreply.codeberg.org> Reviewed-by: Andreas Shimokawa <ashimokawa@noreply.codeberg.org> Co-authored-by: narektor <narektor@noreply.codeberg.org> Co-committed-by: narektor <narektor@noreply.codeberg.org>
205 lines
9.1 KiB
XML
205 lines
9.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
<PreferenceScreen
|
|
android:icon="@drawable/ic_surround"
|
|
android:key="pref_galaxy_buds_pro_noise_control_preference"
|
|
android:persistent="false"
|
|
android:title="@string/prefs_noise_control">
|
|
<PreferenceCategory android:title="@string/prefs_noise_control">
|
|
|
|
<ListPreference
|
|
android:defaultValue="0"
|
|
android:entries="@array/galaxy_pro_noise_controls_options"
|
|
android:entryValues="@array/galaxy_pro_noise_controls_options_values"
|
|
android:icon="@drawable/ic_surround"
|
|
android:key="pref_galaxy_buds_2_noise_control"
|
|
android:summary="%s"
|
|
android:title="@string/prefs_noise_control" />
|
|
|
|
<SeekBarPreference
|
|
android:icon="@drawable/ic_volume_up"
|
|
android:key="pref_galaxy_buds_ambient_volume"
|
|
android:max="2"
|
|
android:min="0"
|
|
android:title="@string/prefs_ambient_volume"
|
|
app:showSeekBarValue="false" />
|
|
|
|
</PreferenceCategory>
|
|
</PreferenceScreen>
|
|
|
|
<PreferenceScreen
|
|
android:icon="@drawable/ic_hearing"
|
|
android:key="prefs_accessibility"
|
|
android:persistent="false"
|
|
android:title="@string/prefs_ambient_settings_title">
|
|
|
|
<PreferenceCategory android:title="@string/prefs_ambient_sound">
|
|
<SwitchPreference
|
|
android:defaultValue="false"
|
|
android:icon="@drawable/ic_phone"
|
|
android:key="pref_galaxy_buds_ambient_mode_during_call"
|
|
android:summary="@string/prefs_ambient_sound_during_call_summary"
|
|
android:title="@string/prefs_ambient_sound_during_call_title" />
|
|
|
|
<SwitchPreference
|
|
android:defaultValue="false"
|
|
android:icon="@drawable/ic_hearing"
|
|
android:key="pref_galaxy_buds_ambient_sound"
|
|
android:title="@string/prefs_customize_ambient_sound_summary" />
|
|
|
|
<SeekBarPreference
|
|
android:defaultValue="1"
|
|
android:dependency="pref_galaxy_buds_ambient_sound"
|
|
android:icon="@drawable/ic_volume_up"
|
|
android:key="pref_galaxy_buds_pro_ambient_volume_right"
|
|
android:max="2"
|
|
android:min="0"
|
|
android:title="@string/prefs_ambient_volume_right"
|
|
app:showSeekBarValue="false" />
|
|
|
|
<SeekBarPreference
|
|
android:defaultValue="1"
|
|
android:dependency="pref_galaxy_buds_ambient_sound"
|
|
android:icon="@drawable/ic_volume_up"
|
|
android:key="pref_galaxy_buds_pro_ambient_volume_left"
|
|
android:max="2"
|
|
android:min="0"
|
|
android:title="@string/prefs_ambient_volume_left"
|
|
app:showSeekBarValue="false" />
|
|
|
|
<SeekBarPreference
|
|
android:defaultValue="1"
|
|
android:dependency="pref_galaxy_buds_ambient_sound"
|
|
android:icon="@drawable/ic_surround"
|
|
android:key="pref_galaxy_buds_pro_ambient_sound_tone"
|
|
android:max="4"
|
|
android:min="0"
|
|
android:summary="@string/pref_ambient_sound_tone_summary"
|
|
android:title="@string/pref_ambient_sound_tone"
|
|
app:showSeekBarValue="false" />
|
|
</PreferenceCategory>
|
|
</PreferenceScreen>
|
|
|
|
<ListPreference
|
|
android:defaultValue="0"
|
|
android:entries="@array/galaxy_buds_live_equalizer_modes"
|
|
android:entryValues="@array/galaxy_buds_live_equalizer_values"
|
|
android:icon="@drawable/ic_equalizer"
|
|
android:key="pref_galaxy_buds_equalizer_mode"
|
|
android:summary="%s"
|
|
android:title="@string/prefs_equalizer_preset" />
|
|
|
|
<PreferenceScreen
|
|
android:icon="@drawable/ic_touch"
|
|
android:key="prefs_galaxy_touch_options"
|
|
android:persistent="false"
|
|
android:title="@string/prefs_galaxy_touch_options">
|
|
<PreferenceCategory android:title="@string/prefs_galaxy_touch_options">
|
|
<SwitchPreference
|
|
android:defaultValue="true"
|
|
android:icon="@drawable/ic_touch"
|
|
android:key="pref_galaxy_buds_lock_touch"
|
|
android:title="@string/prefs_touch_lock_buds2" />
|
|
<ListPreference
|
|
android:defaultValue="0"
|
|
android:dependency="pref_galaxy_buds_lock_touch"
|
|
android:entries="@array/galaxy_pro_touch_options_left"
|
|
android:entryValues="@array/galaxy_pro_touch_options_values"
|
|
android:icon="@drawable/ic_switch_left"
|
|
android:key="pref_galaxy_buds_touch_left"
|
|
android:summary="%s"
|
|
android:title="@string/prefs_left" />
|
|
|
|
<ListPreference
|
|
android:defaultValue="0"
|
|
android:dependency="pref_galaxy_buds_lock_touch"
|
|
android:entries="@array/galaxy_pro_touch_switch_controls_options"
|
|
android:entryValues="@array/galaxy_pro_touch_switch_controls_values"
|
|
android:key="pref_galaxy_buds_touch_left_switch"
|
|
android:summary="%s"
|
|
android:title="@string/prefs_switch_control_left" />
|
|
|
|
<ListPreference
|
|
android:defaultValue="0"
|
|
android:dependency="pref_galaxy_buds_lock_touch"
|
|
android:entries="@array/galaxy_pro_touch_options_right"
|
|
android:entryValues="@array/galaxy_pro_touch_options_values"
|
|
android:icon="@drawable/ic_switch_right"
|
|
android:key="pref_galaxy_buds_touch_right"
|
|
android:summary="%s"
|
|
android:title="@string/prefs_right" />
|
|
<ListPreference
|
|
android:defaultValue="0"
|
|
android:dependency="pref_galaxy_buds_lock_touch"
|
|
android:entries="@array/galaxy_pro_touch_switch_controls_options"
|
|
android:entryValues="@array/galaxy_pro_touch_switch_controls_values"
|
|
android:key="pref_galaxy_buds_touch_right_switch"
|
|
android:summary="%s"
|
|
android:title="@string/prefs_switch_control_right" />
|
|
|
|
<SwitchPreference
|
|
android:defaultValue="false"
|
|
android:dependency="pref_galaxy_buds_lock_touch"
|
|
android:icon="@drawable/ic_touch"
|
|
android:key="pref_galaxy_pro_double_tap_edge"
|
|
android:summary="@string/prefs_double_tap_edge_summary"
|
|
android:title="@string/prefs_double_tap_edge" />
|
|
</PreferenceCategory>
|
|
</PreferenceScreen>
|
|
|
|
<PreferenceScreen
|
|
android:icon="@drawable/ic_settings"
|
|
android:key="prefs_settings"
|
|
android:persistent="false"
|
|
android:title="@string/title_activity_settings">
|
|
<SwitchPreference
|
|
android:defaultValue="false"
|
|
android:icon="@drawable/ic_hearing"
|
|
android:key="pref_galaxy_buds_pro_in_ear_detection"
|
|
android:summary="@string/prefs_in_ear_detection_summary"
|
|
android:title="@string/nothing_prefs_inear_title" />
|
|
<SwitchPreference
|
|
android:defaultValue="false"
|
|
android:icon="@drawable/ic_auto_awesome"
|
|
android:key="prefs_galaxy_buds_seamless_connection"
|
|
android:summary="@string/prefs_seamless_connection_switch_summary"
|
|
android:title="@string/prefs_seamless_connection_switch_title" />
|
|
|
|
<SwitchPreference
|
|
android:defaultValue="false"
|
|
android:icon="@drawable/ic_hearing"
|
|
android:key="pref_galaxy_buds_noise_controls_with_one_earbud"
|
|
android:summary="@string/prefs_noise_control_with_one_earbud_summary"
|
|
android:title="@string/prefs_noise_control_with_one_earbud" />
|
|
|
|
<SeekBarPreference
|
|
android:defaultValue="50"
|
|
android:icon="@drawable/ic_volume_up"
|
|
android:key="pref_galaxy_buds_pro_balance"
|
|
android:max="32"
|
|
android:min="0"
|
|
android:title="@string/pref_balance"
|
|
app:defaultValue="16"
|
|
app:showSeekBarValue="true" />
|
|
|
|
<PreferenceCategory android:title="@string/prefs_galaxy_buds_experimental">
|
|
<SwitchPreference
|
|
android:defaultValue="false"
|
|
android:icon="@drawable/ic_videogame"
|
|
android:key="pref_galaxy_buds_game_mode"
|
|
android:summary="@string/prefs_game_mode_summary"
|
|
android:title="@string/prefs_game_mode" />
|
|
</PreferenceCategory>
|
|
|
|
<!-- <SwitchPreference
|
|
android:defaultValue="false"
|
|
android:icon="@drawable/ic_graphic_eq"
|
|
android:key="pref_galaxy_buds_pro_read_notifications_outloud"
|
|
android:title="@string/prefs_read_notification_outloud" />
|
|
-->
|
|
|
|
</PreferenceScreen>
|
|
</androidx.preference.PreferenceScreen>
|