我有一个音乐播放器应用程序,我希望在播放歌曲时在通知栏中显示专辑封面以及歌曲详细信息。我将专辑封面设置为.setLargeIcon(albumArt)
,其中albumArt是位图图像。但它在通知栏中并不是很大。在这里我的设备看起来如何 -
以下是我正在使用的通知 -
final Notification noti = new Notification.Builder(getApplicationContext())
.setContentTitle(fileStripped)
.setContentText(artist)
.setOngoing(true)
.setWhen(0)
.setSmallIcon(R.drawable.ic_action_headphones)
.setLargeIcon(albumArt)
.setContentIntent(pIntent).getNotification();
noti.flags = Notification.FLAG_ONGOING_EVENT | Notification.FLAG_NO_CLEAR;
final NotificationManager notificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
请帮我解决问题。在Google上搜索很多,但没有看到任何答案!
提前致谢!