3

どのようにdisableまたはhide通知小さなアイコン?私はそれが必須であることを知っているが、私は小さなアイコンを隠すか削除したいだけで大きなアイコンを表示したい。通知アイコンを無効にする方法は?

enter image description here

+0

.setSmallIcon(android.R.color.transparent) –

+0

Er。 Arjun saini私はこれを試してみましたが、その中に白色の赤い円があります。 –

+0

また、小さなアイコンを設定しないでください、またはコード内で使用しないでください –

答えて

2

あなたがこの方法を非表示にすることができます:

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()); 

私はこのGoogleプラス通知のような何かをしたいです。

.setSmallIcon(android.R.color.transparent) 
+1

アイコンを隠すことはありませんが、(ロリポップ上では) 。 –

-3

builder.setSmallIcon(0);

OR

builder.setSmallIcon(android.R.color.transparent)

-1

ジャストのみ .setLargeIcon(getBitmap(R.drawable.large_icon))とのために使用します。 setSmallIcon()は透明な画像を使用します。

関連する問題