We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Is there a way to change the "fit" style for the artwork on android so it would cover the space?
The text was updated successfully, but these errors were encountered:
Hi @KestasVenslauskas, here's the code that is responsible for downloading and setting the image or the notification:
downloading: https://github.com/THEOplayer/react-native-theoplayer/blob/develop/android/src/main/java/com/theoplayer/media/MediaNotificationBuilder.kt#L180
setting: https://github.com/THEOplayer/react-native-theoplayer/blob/develop/android/src/main/java/com/theoplayer/media/MediaNotificationBuilder.kt#L123
The resizing has to happen before setting the image:
int desiredWidth = 100; int desiredHeight = 100; Bitmap resizedBitmap = Bitmap.createScaledBitmap(originalBitmap, desiredWidth, desiredHeight, false);
We'll try to plan such a feature in a future release.
Sorry, something went wrong.
tvanlaerhoven
No branches or pull requests
Is there a way to change the "fit" style for the artwork on android so it would cover the space?
The text was updated successfully, but these errors were encountered: