通知小图标未移到最左边

时间:2018-12-12 04:27:45

标签: android notifications

我正在此模拟器中运行代码:

  

Nexus 5X API 27(Android 8.1.0,API 27)

我正在使用以下内容显示通知:

 Notification mainNotification = new NotificationCompat.Builder(this,"CHANNEL_ID")
            .setSmallIcon(R.drawable.ic_4k)
            .setContentTitle("Test title")
            .setContentText(" Click for options")
            .setLargeIcon(R.drawable.ic_4k)
            .setPriority(Notification.PRIORITY_MAX)
            .build();

我需要通知图标[4k]始终位于最左侧。触发此通知后,它将始终出现在除Gmail应用程序通知以外的所有其他通知之前。即使从小睡中返回,Gmail仍会返回左侧。

Gmail notification always of the left corner

不是最新的通知总是出现在左侧吗?我如何做到这一点?

应该提到的是,在我的设备上进行测试时(注9),通知始终显示在左侧。 enter image description here

0 个答案:

没有答案