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:
parent
eaad3d04b8
commit
20e7b25808
4 changed files with 10 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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?
|
||||
|
|
Loading…
Reference in a new issue