Fix next previous drawable size

This commit is contained in:
Prathamesh More 2022-07-06 18:10:43 +05:30
parent 31df20ffe5
commit 1de4bbcdec
12 changed files with 20 additions and 49 deletions

View file

@ -189,12 +189,12 @@ class PlayingNotificationClassic(
).toBitmap()
val prev =
context.getTintedDrawable(
R.drawable.ic_skip_previous_round_white_32dp,
R.drawable.ic_skip_previous,
primary
).toBitmap()
val next =
context.getTintedDrawable(
R.drawable.ic_skip_next_round_white_32dp,
R.drawable.ic_skip_next,
primary
).toBitmap()
val playPause = getPlayPauseBitmap(true)

View file

@ -75,12 +75,12 @@ class PlayingNotificationImpl24(
val toggleFavorite = buildFavoriteAction(false)
val playPauseAction = buildPlayAction(true)
val previousAction = NotificationCompat.Action(
R.drawable.ic_skip_previous_round_white_32dp,
R.drawable.ic_skip_previous,
context.getString(R.string.action_previous),
retrievePlaybackAction(ACTION_REWIND)
)
val nextAction = NotificationCompat.Action(
R.drawable.ic_skip_next_round_white_32dp,
R.drawable.ic_skip_next,
context.getString(R.string.action_next),
retrievePlaybackAction(ACTION_SKIP)
)