feat: Add audio equalizer with UI

This commit is contained in:
Jaime García 2025-09-08 19:28:34 +02:00
parent c62d2ace4d
commit 7c0d44680f
No known key found for this signature in database
GPG key ID: BC4E5F71A71BDA5B
26 changed files with 762 additions and 31 deletions

View file

@ -151,6 +151,9 @@
app:destination="@id/loginFragment"
app:popUpTo="@id/homeFragment"
app:popUpToInclusive="true" />
<action
android:id="@+id/action_settingsFragment_to_equalizerFragment"
app:destination="@id/equalizerFragment" />
</fragment>
<fragment
android:id="@+id/searchFragment"
@ -300,6 +303,20 @@
android:id="@+id/action_indexFragment_to_directoryFragment"
app:destination="@id/directoryFragment" />
</fragment>
<fragment
android:id="@+id/playerControllerFragment"
android:name="com.cappielloantonio.tempo.ui.fragment.PlayerControllerFragment"
android:label="PlayerControllerFragment"
tools:layout="@layout/inner_fragment_player_controller">
<action
android:id="@+id/action_playerControllerFragment_to_equalizerFragment"
app:destination="@id/equalizerFragment"/>
</fragment>
<fragment
android:id="@+id/equalizerFragment"
android:name="com.cappielloantonio.tempo.ui.fragment.EqualizerFragment"
android:label="EqualizerFragment"
tools:layout="@layout/fragment_equalizer" />
<dialog
android:id="@+id/songBottomSheetDialog"
android:name="com.cappielloantonio.tempo.ui.fragment.bottomsheetdialog.SongBottomSheetDialog"