mirror of
https://github.com/Michatec/Radio.git
synced 2026-06-15 13:33:22 +02:00
feat(ui): add custom theme color support and share app functionality
Introduce a new custom theme feature that allows users to personalize the application background color using RGB sliders, hex input, or a set of predefined palettes. Key changes include: * **Custom Theme Engine**: Added `CustomThemeFragment` and `ThemeHelper` to manage color selection and application. The UI dynamically updates the background color across the `MainActivity` and `PlayerFragment` when preferences change. * **Android TV Support**: Provided a specialized layout for television devices (`fragment_custom_theme.xml` in `layout-television`) with optimized focus handling for D-pad navigation. * **Share Feature**: Implemented a "Share App" preference in `SettingsFragment` that triggers a standard Android share intent and displays a thank-you notification upon use. * **Localization**: Added Ukrainian language support and updated string resources for multiple locales (DE, DA, EL, FR, JA, NL, PL, RU) to include the new theme and share options. * **Persistence**: Updated `PreferencesHelper` and `Keys` to store theme-related settings, including the enabled state, selected color, and predefined color index.
This commit is contained in:
@@ -161,4 +161,23 @@
|
||||
<string name="media_route_menu_title">Przesyłanie</string>
|
||||
<string name="pref_visualizer_title">Analizator Widma</string>
|
||||
<string name="pref_visualizer_summary">Pokaż Analizator Widma.</string>
|
||||
|
||||
<string name="pref_share_app_title">Udostępnij aplikację</string>
|
||||
<string name="pref_share_app_summary">Poleć tę aplikację znajomemu.</string>
|
||||
<string name="pref_share_app_share_text">Sprawdź tę świetną aplikację radiową: https://github.com/michatec/Radio</string>
|
||||
<string name="pref_share_app_thank_title">Dziękujemy!</string>
|
||||
<string name="pref_share_app_thank_message">Wielkie podziękowania od deweloperów.</string>
|
||||
|
||||
<!-- Custom Theme -->
|
||||
<string name="pref_custom_theme_enabled_summary">Włącza kartę motywu niestandardowego.</string>
|
||||
<string name="pref_custom_theme_disabled_summary">Wyłącza kartę motywu niestandardowego.</string>
|
||||
<string name="pref_custom_theme_summary">Dostosuj kolor tła aplikacji.</string>
|
||||
<string name="pref_custom_theme_title">Motyw niestandardowy</string>
|
||||
<string name="pref_custom_theme_enabled_title">Włącz motyw niestandardowy</string>
|
||||
<string name="theme_predefined_colors">Predefiniowane kolory (Jasny/Ciemny):</string>
|
||||
<string name="theme_custom_rgb">Niestandardowy RGB (proszę dostosować do aplikacji):</string>
|
||||
<string name="theme_red">Czerwony</string>
|
||||
<string name="theme_green">Zielony</string>
|
||||
<string name="theme_blue">Niebieski</string>
|
||||
<string name="hex_code">Kod Hex</string>
|
||||
</resources>
|
||||
|
||||
Reference in New Issue
Block a user