Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix the issue of blurry media images in notifications. #1493

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import android.content.Context
import android.content.Intent
import android.content.IntentFilter
import android.graphics.Bitmap
import android.media.MediaMetadata
import androidx.core.content.ContextCompat
import androidx.core.content.getSystemService
import androidx.core.graphics.drawable.toBitmap
Expand Down Expand Up @@ -120,6 +121,18 @@ class PlayerNotificationHelper(private val viewModel: PlayerViewModel) : KoinCom
}.build()

nm.notify(VIDEO_PLAYER_NOTIFICATION_ID, notification)

mediaIcon?.let {
viewModel.mediaSession.controller.metadata?.let {
if (!it.containsKey(MediaMetadata.METADATA_KEY_ART)) {
viewModel.mediaSession.setMetadata(
MediaMetadata.Builder(it)
.putBitmap(MediaMetadata.METADATA_KEY_ART, mediaIcon)
.build()
)
}
}
}
}

if (receiverRegistered.compareAndSet(false, true)) {
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/values-v29/dimens.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<dimen name="media_notification_height">140dp</dimen>
<dimen name="media_notification_height">196dp</dimen>
</resources>