欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Android 监听Notification 被清除实例代码

程序员文章站 2024-03-05 23:57:31
前言  一般非常驻的notification是可以被用户清除的,如果能监听被清除的事件就可以做一些事情,比如推送重新计数的问题。  正文...

前言

 一般非常驻的notification是可以被用户清除的,如果能监听被清除的事件就可以做一些事情,比如推送重新计数的问题。

 正文

 private final broadcastreceiver mbroadcastreceiver = new broadcastreceiver() {

  @override
  public void onreceive(context context, intent intent) {
   if (intent == null || context == null) {
    return;
   }

   mnotificationmanager.cancel(notification_id_live);

   string type = intent.getstringextra(push_type);
   if (push_type_link.equals(type)) {
    //mnumlinkes = 0;
   } else if (push_type_live.equals(type)) {
    //mnumlives = 0;
   }
   //这里可以重新计数
  }
 };


 private void sendlivenotification() {
  intent intent = new intent(notification_click_action);

  notificationcompat.builder mbuilder = new notificationcompat.builder(this);

  string title = "push测试";
  mbuilder.setcontenttitle(title);
  mbuilder.setticker(title);
  mbuilder.setcontenttext("https://233.tv/over140");
  mbuilder.setlargeicon(bitmapfactory.decoderesource(getresources(), r.mipmap.ic_launcher));
  mbuilder.setsmallicon(r.drawable.ic_action_cast);
  mbuilder.setdefaults(notification.default_all);
  mbuilder.setwhen(system.currenttimemillis());
  mbuilder.setcontentintent(pendingintent.getbroadcast(this, notification_id_live, intent, 0));
  mbuilder.setdeleteintent(pendingintent.getbroadcast(this, notification_id_live, new intent(notification_deleted_action).putextra(push_type, push_type_live), 0));

  mnotificationmanager.notify(notification_id_live, mbuilder.build());
 }

代码说明

  1、最重要的是setdeleteintent,这个在api level 11(android 3.0) 新增的

  2、注意不要设置setautocancel为true,否则监听器接收不到

  3、这里统一了点击通知和消除通知的操作

  4、注意广播在推送前要注册好

实际使用中发现还是有一点问题,比如service被kill掉了,通知栏点击就会没有反应了,这块还需要再考虑一下,比如把broadcast在androidmainfest中监听。

以上就是对android notification 事件的资料整理,希望能帮助android开发的朋友。