如何禁用通知小图标? [英] how to disable notification small icon?

查看:235
本文介绍了如何禁用通知小图标?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

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

How to disable or hide notification small icon ? I know it is mandatory but I want to hide or remove small icon and just show large icon.

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加通知:

i want something like this google plus notification:

推荐答案

创建自定义通知,并从通知生成器中删除 .setStyle().

Create custom notification and remove .setStyle() from notification builder.

在阅读代码之前,请先阅读此文档.非常非常有帮助,它将清除您的所有疑问: Android自定义通知文档

Please read this doc before going through the code. very very helpful and will clear all of your doubts: Android custom notification doc

使用提供的代码,仅在布局文件夹中创建两个布局,一个用于折叠视图,另一个用于展开视图(如果您想显示展开的视图)

Use the provided code and just make two layouts in your layout folder, one for collapsed view and another for expanded view( if u want to show expanded view)

// custom notification class
public class NotificationUtils {

private static String TAG = NotificationUtils.class.getSimpleName();
private String channelId = "notification_channel";
private static final int NOTIFICATION_ID_BIG_IMAGE = 101;

private Context mContext;

public NotificationUtils(Context mContext) {
    this.mContext = mContext;
}
//Call this method in your FirebaseMessagingService class
public void showNotificationMessage(String billUrl, String title, String message, String timeStamp, Intent intent) {
    intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP);
    final PendingIntent resultPendingIntent =
            PendingIntent.getActivity(mContext,0,intent,
                    PendingIntent.FLAG_ONE_SHOT
            );
    final NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(mContext, channelId);

        if (billUrl != null && billUrl.length() > 4 && Patterns.WEB_URL.matcher(billUrl).matches()) {
            Bitmap bitmap = getBitmapFromURL(billUrl);
            if (bitmap != null) {
                showNotification(bitmap, mBuilder, title, message, timeStamp, resultPendingIntent);
            }
    }
}

private void showNotification(Bitmap bitmap, NotificationCompat.Builder mBuilder, String brandName,
                              String description, String timeStamp, PendingIntent resultPendingIntent) {

    // Get the layouts to use in the custom notification
    RemoteViews notificationLayout = new RemoteViews(mContext.getPackageName(), R.layout.view_collapsed_notification);
    RemoteViews notificationLayoutExpanded = new RemoteViews(mContext.getPackageName(), R.layout.view_expanded_notification);


    //Null and Empty checks for your Key Value Pairs
    if (bitmap != null) {
        notificationLayoutExpanded.setImageViewBitmap(R.id.bill_container, bitmap);
    }

    if (brandName != null) {
        notificationLayout.setTextViewText(R.id.content_title, brandName);
        notificationLayoutExpanded.setTextViewText(R.id.expand_content_title, brandName);
    }

    if (description != null) {
        notificationLayout.setTextViewText(R.id.content_text, description);
        notificationLayoutExpanded.setTextViewText(R.id.expand_content_text, description);
    }

    if (timeStamp != null) {
        notificationLayout.setTextViewText(R.id.timestamp, timeStamp);
        notificationLayoutExpanded.setTextViewText(R.id.expand_timestamp, timeStamp);
    }

    Uri defaultSoundUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
    mBuilder =
            new NotificationCompat.Builder(mContext, channelId)
                    .setSmallIcon(R.drawable.ic_notification_logo)
                    .setAutoCancel(true)
                    .setSound(defaultSoundUri)
                    .setCustomContentView(notificationLayout)
                    .setCustomBigContentView(notificationLayoutExpanded)
                    .setPriority(Notification.PRIORITY_MAX)
                    .setContentIntent(resultPendingIntent);
    NotificationManager notificationManager =
            (NotificationManager) mContext.getSystemService(Context.NOTIFICATION_SERVICE);

    // Since android Oreo notification channel is needed.
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
        NotificationChannel channel = new NotificationChannel(channelId,
                "notifications",
                NotificationManager.IMPORTANCE_HIGH);
        notificationManager.createNotificationChannel(channel);
    }

    notificationManager.notify(NOTIFICATION_ID_BIG_IMAGE, mBuilder.build());

}


 // Downloading push notification image before displaying it in the notification tray
private Bitmap getBitmapFromURL(String strURL) {
    try {
        URL url = new URL(strURL);
        HttpURLConnection connection = (HttpURLConnection) url.openConnection();
        connection.setDoInput(true);
        connection.connect();
        InputStream input = connection.getInputStream();
        Bitmap myBitmap = BitmapFactory.decodeStream(input);
        return myBitmap;
    } catch (IOException e) {
        e.printStackTrace();
        return null;
    }
}
}

这篇关于如何禁用通知小图标?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆