如何禁用通知小图标?

Eda*_*izi 5 notifications icons android android-layout android-notifications

如何disablehide通知小图标?我知道这是强制性的,但我想隐藏或删除小图标并只显示大图标。

Notification.Builder builder = new Notification.Builder(FcmIntentService.this).setSmallIcon(R.drawable.notification_small_icon_transparent);
NotificationManager notificationManager =
            (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
    notificationManager.notify(11, builder.build());
Run Code Online (Sandbox Code Playgroud)

我想要这样的 google plus 通知:

在此处输入图片说明

Har*_*iya 4

你可以这样隐藏。

.setSmallIcon(android.R.color.transparent)
Run Code Online (Sandbox Code Playgroud)

  • 它不隐藏图标,但显示一个灰色的空圆圈(在棒棒糖上)。 (4认同)