queue: fix visual issue with transition

Fix a visual issue with the queue animation where the playback view
will still slightly show.

This was caused by the lack of a background in the queue fragment UI.
This commit is contained in:
OxygenCobalt 2022-06-18 08:46:10 -06:00
parent eaad3d04b8
commit 20e7b25808
No known key found for this signature in database
GPG key ID: 37DBE3621FE9AD47
4 changed files with 10 additions and 2 deletions

View file

@ -1,5 +1,12 @@
# Changelog
## dev
#### What's Fixed
- Fixed broken tablet layouts
- Fixed seam that would appear on some album covers
- Fixed visual issue with the queue opening animation
## v2.4.0
#### What's New

View file

@ -144,7 +144,7 @@ class PlaybackViewModel : ViewModel(), PlaybackStateManager.Callback, MusicStore
* usually alongside a context too. Examples include:
* - Opening files
* - Restoring the playback state
* - Future app shortcuts
* - (Future) app shortcuts
*
* We would normally want to put this kind of functionality into PlaybackService, but it's
* lifecycle makes that more or less impossible.

View file

@ -4,6 +4,7 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="?attr/colorSurface"
android:orientation="vertical">
<org.oxycblt.auxio.ui.EdgeAppBarLayout

View file

@ -70,7 +70,7 @@ fully may take some time.
#### Why is playback distorted when I play my FLAC/WAV files?
ExoPlayer, while powerful, does add some overhead when playing exceptionally high-quality files (2000+ KB/s bitrate,
90000+ Hz sample rate). This is worsened by the ReplayGain system, as it has to copy the audio buffer no matter what.
This results in choppy, distorted playback in some case as audio data cannot be delivered in time. Sadly, there is
This results in choppy, distorted playback in some cases as audio data cannot be delivered in time. Sadly, there is
not much I can do about this right now.
#### What is dynamic ReplayGain?