如何避免Android Oreo及更高版本上的抬头通知?

时间:2018-11-02 06:20:40

标签: android android-notifications android-8.0-oreo android-notification-bar

我想在后台显示通知。意味着,当用户打开通知屏幕时。

但是它出现在我的应用程序屏幕的顶部。我不想显示在我的应用程序的顶部。

我只想在通知栏中显示。

有人可以建议我要设置什么属性。

1 个答案:

答案 0 :(得分:1)

确保您的活动不是全屏显示。

为通知设置低优先级

NotificationCompat.Builder mBuilder.setContentTitle(fileName)
                .setContentText("Notification")
                .setSmallIcon(R.drawable.icon)
                .setPriority(NotificationCompat.PRIORITY_LOW)
                .setAutoCancel(true)
                .setContentIntent(pendingIntent);

并且对您的通知渠道的重视程度低

NotificationChannel channel = new NotificationChannel(CHANNEL_ID, name, IMPORTANCE_LOW);
相关问题