我将通知优先级设置为max,但它仍然位于通知区域的底部。
我的代码:
NotificationCompat.Builder builder = new NotificationCompat.Builder(this)
.setCustomContentView(views)
.setSmallIcon(R.drawable.ic_play_24dp)
.setOngoing(true)
.setPriority(NotificationCompat.PRIORITY_MAX)
.setContentIntent(notification);
notificationmanager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
notificationmanager.notify(0, builder.build());
外观如何:
答案 0 :(得分:0)
来自android文档:
PRIORITY_MAX在API级别26中已弃用。 因此请改用IMPORTANCE_HIGH。