无法从提到的内容通知中删除图像(android)

时间:2015-12-14 12:07:32

标签: android notifications

我想知道如何从内容通知中删除图标图片,图片如下:
Image Link

我的代码如下:

final NotificationCompat.Builder  mBuilder = new NotificationCompat.Builder(ctx);

                mBuilder.setContentTitle("New Message with explicit intent");
                mBuilder.setContentText("New message from javacodegeeks received");
                mBuilder.setTicker("Explicit: New Message Received!");
                mBuilder.setSmallIcon(R.mipmap.ic_launcher);
                mBuilder.setLargeIcon(result);

                NotificationManager myNotificationManager;
                myNotificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);

                // pass the Notification object to the system
                myNotificationManager.notify(0, mBuilder.build());

1 个答案:

答案 0 :(得分:0)

如果您不想要图像,请将其删除:

Promotion