Android Notification --- 多条通知

直接上代码,只要通知的id不一样就可以实现多条通知,也是就是这句notificationManager.notify(mNotificationNum, notification.build());

还有一个问题,服务端一般不会给你返通知id,也不好返,那怎么办???
我是这么处理的,当通知条数超过10条之后把时间最早的那条通知替换掉

/**
     * 实现自定义推送声音
     * @param context
     * @param bundle
     */
    private void processCustomMessage(Context context, Bundle bundle) {
        mNotificationNum++;
        if(mNotificationNum > NOTIFICATION_SHOW_SHOW_AT_MOST) {
            mNotificationNum = 1;
        }
        NotificationCompat.Builder notification = new NotificationCompat.Builder(context);

        String title = bundle.getString(JPushInterface.EXTRA_TITLE);
//      String msg = bundle.getString(JPushInterface.EXTRA_MESSAGE);
        String extras = bundle.getString(JPushInterface.EXTRA_EXTRA);
        Bitmap bitmap = BitmapFactory.decodeResource(context.getResources(), R.mipmap.icon_mdpi);

        Intent mIntent = new Intent(context,NewsArticleActivity.class);
        ThirdView.isReadList = false;
        mIntent.putExtra("sex", "");
        mIntent.putExtras(bundle);
        mIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, mIntent, PendingIntent.FLAG_UPDATE_CURRENT);

        notification.setContentIntent(pendingIntent)
                .setAutoCancel(true);


        if (!TextUtils.isEmpty(extras)) {
            try {
                JSONObject extraJson = new JSONObject(extras);
                if (null != extraJson && extraJson.length() > 0) {
                    String content = extraJson.getString("title");
                    notification.setContentText(content);
                    notification.setSound(Uri.parse("android.resource://" + context.getPackageName() + "/" +R.raw.jiguang));
                }
            } catch (JSONException e) {
                e.printStackTrace();
            }
        }
        if(TextUtils.isEmpty(title)) {
            title = "";
        }
        title = title.equals("") ? "" : title;
        notification.setContentTitle(title)
                .setSmallIcon(R.mipmap.icon_mdpi)
                .setLargeIcon(bitmap);

        NotificationManager notificationManager = (NotificationManager) context.getSystemService(NOTIFICATION_SERVICE);
        notificationManager.notify(mNotificationNum, notification.build());
    }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值