返回顶部
首页 > 资讯 > 精选 >Android中NotificationListenerService怎么用
  • 889
分享到

Android中NotificationListenerService怎么用

android 2023-05-31 01:05:40 889人浏览 泡泡鱼
摘要

这篇文章主要介绍了Android中NotificationListenerService怎么用,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。使用新建一服务类,使它继承Noti

这篇文章主要介绍了Android中NotificationListenerService怎么用,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。

使用

新建一服务类,使它继承NotificationListenerService,并实现两个重要的方法:

@Targetapi(Build.VERSION_CODES.JELLY_BEAN_MR2) public class NotificationListener extends NotificationListenerService {   privatestatic final String TAG = "NotificationListener";     @Override   public void onNotificationRemoved(StatusBarNotification sbn) {     Log.i(TAG,"Notification removed");   }     @Override   public void onNotificationPosted(StatusBarNotification sbn) {     Log.i(TAG, "Notification posted");   } }

AndroidManifest.xml中声明此服务类,并必须声明BIND_NOTIFICATION_LISTENER_SERVICE许可和意图过滤器

android.service.notification.NotificationListenerService,还有我们在系统设置中通知使用权列表中看到的label标签:

<serviceandroid:name=".NotificationListener"      android:label="通知使用权测试程序"      android:permission="android.permission.BIND_NOTIFICATION_LISTENER_SERVICE">   <intent-filter>     <actionandroid:name="android.service.notification.NotificationListenerService"/>   </intent-filter>  </service>

OK,就这么简单就可以完成APP监听系统通知栏的功能了。接下来,我们来看看NotificationListenerService类还提供了一些重要的方法:

StatusBarNotification[] sbns = getActiveNotifications();         // 返回当前系统所有通知的数组 cancelAllNotifications();                        // 删除系统中所有可被清除的通知 cancelNotification(String pkg, String tag, int id);           // 删除具体某一个通知

还有上面我们提到的两个重要的重写方法:

onNotificationRemoved(StatusBarNotification sbn);            // 通知被移除时回调 onNotificationPosted(StatusBarNotification sbn);             // 增加一条通知时回调

这两个重要的回调方法它们的参数StatusBarNotification对象是当前触发变化通知的详细信息。来看下StatusBarNotification的使用:

sbn.getId();                               // 返回通知对应的id sbn.getNotification();                          // 返回通知对象 sbn.getPackageName();                          // 返回通知对应的包名 sbn.getPostTime();                            // 返回通知发起的时间 sbn.getTag();                              // 返回通知的Tag,如果没有设置返回null sbn.isClearable();                            // 返回该通知是否可被清楚,是否为FLAG_ONGoING_EVENT、FLAG_NO_CLEAR sbn.isOngoing();                             // 返回该通知是否在正在运行的,是否为FLAG_ONGOING_EVENT

其中,getNotification()返回的通知对象,还可以详细看到通知的其它相关信息,如:

Notification notification = sbn.getNotification(); notification.contentView;                        // 通知的RemoteViews notification.contentIntent;                       // 通知的PendingIntent notification.actions;                          // 通知的行为数组 // Android4.4后还扩展了可以获取通知详情信息 if (Build.VERSION.SDK_INT >Build.VERSION_CODES.JELLY_BEAN_MR2) {      Bundle extras = notification.extras;      String notificationTitle = extras.getString(Notification.EXTRA_TITLE);      int notificationIcon = extras.getInt(Notification.EXTRA_SMALL_ICON);      Bitmap notificationLargeIcon = ((Bitmap)extras.getParcelable(Notification.EXTRA_LARGE_ICON));      CharSequence notificationText = extras.getCharSequence(Notification.EXTRA_TEXT);      CharSequence notificationSubText = extras.getCharSequence(Notification.EXTRA_SUB_TEXT); }

跳转系统设置里的通知使用权页面

private boolean gotoNotificationAccessSetting(Contextcontext) {   try {     Intent intent = new Intent("android.settings.ACTION_NOTIFICATION_LISTENER_SETTINGS");     intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);     context.startActivity(intent);     return true;   } catch(ActivityNotFoundException e) {     try {       Intent intent = new Intent();       intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);       ComponentName cn = new ComponentName("com.android.settings","com.android.settings.Settings$NotificationAccessSettingsActivity");       intent.setComponent(cn);       intent.putExtra(":settings:show_fragment", "NotificationAccessSettings");       context.startActivity(intent);       return true;     } catch(Exception ex) {       ex.printStackTrace();     }     return false;   } }

判断是否拥有通知使用权

private boolean notificationListenerEnable() {   boolean enable = false;   String packageName = getPackageName();   String flat= Settings.Secure.getString(getContentResolver(),"enabled_notification_listeners");   if (flat != null) {     enable= flat.contains(packageName);   }   return enable; }

感谢你能够认真阅读完这篇文章,希望小编分享的“Android中NotificationListenerService怎么用”这篇文章对大家有帮助,同时也希望大家多多支持编程网,关注编程网精选频道,更多相关知识等着你来学习!

--结束END--

本文标题: Android中NotificationListenerService怎么用

本文链接: https://lsjlt.com/news/222708.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
  • Android中NotificationListenerService怎么用
    这篇文章主要介绍了Android中NotificationListenerService怎么用,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。使用新建一服务类,使它继承Noti...
    99+
    2023-05-31
    android
  • android使用NotificationListenerService监听通知栏消息
    NotificationListenerService是通过系统调起的服务,在应用发起通知时,系统会将通知的应用,动作和信息回调给NotificationListenerSer...
    99+
    2022-06-06
    Android
  • Android中AIDL怎么用
    这篇文章主要介绍Android中AIDL怎么用,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!AIDL,即Android Interface Definition Language,Android接口定义语言。这门语言...
    99+
    2023-06-20
  • Android中Gson怎么用
    小编给大家分享一下Android中Gson怎么用,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!1. 导入Android Studio工程dependencies {    ...
    99+
    2023-06-25
  • Android中TextView怎么用
    这篇文章给大家分享的是有关Android中TextView怎么用的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。XML的几个特殊属性 android:autoLink 用于指定是否将文本转换成可点击的超链接形式,它...
    99+
    2023-05-30
    android textview
  • Android中relativelayout.layoutparams怎么用
    RelativeLayout.LayoutParams 是 RelativeLayout 的子类,用于设置子视图在 Relative...
    99+
    2024-02-29
    Android
  • android 中 webview 怎么用 localStorage
    我在 android里面 使用html5的 localStorage 为什么存不进去也读不出来呀? 网上搜了好多都没效果 mainWebView = (WebVi...
    99+
    2022-06-06
    localstorage webview Android
  • Android中Toast怎么使用
    这篇文章给大家分享的是有关Android中Toast怎么使用的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。老规矩,先上效果图吧主要实现了几种常用的方式:1.最基本的Toast系统自带Toast采用的是队列的方式,...
    99+
    2023-06-14
  • Android中CountDownTimer类怎么用
    这篇文章主要介绍Android中CountDownTimer类怎么用,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!一、概述项目中经常用到倒计时的功能,比如说限时抢购,手机获取验证码等等。而google官方也帮我们封装...
    99+
    2023-06-22
  • Android中ListView怎么使用
    这篇文章主要讲解了“Android中ListView怎么使用”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“Android中ListView怎么使用”吧!一、具体思路1、创建Listview控...
    99+
    2023-06-22
  • Android中AssetManager怎么使用
    在Android中,AssetManager类用于访问应用程序的assets目录中的文件。可以通过以下步骤使用AssetManage...
    99+
    2023-09-26
    Android AssetManager
  • Android中AsyncTask怎么使用
    在Android中,AsyncTask是一个用于在后台执行异步操作的类。AsyncTask是一个泛型类,它的三个泛型参数分别是Par...
    99+
    2023-09-29
    Android AsyncTask
  • Android中RecyclerView怎么使用
    在Android中,RecyclerView是用于显示大量数据的高性能容器。以下是使用RecyclerView的步骤:1. 在布局文...
    99+
    2023-09-12
    Android
  • Android中OKHttp怎么使用
    OKHttp是一个开源的HTTP客户端库,用于在Android中发送和接收网络请求。下面是一个示例,展示了如何在Android中使用...
    99+
    2023-09-13
    Android
  • Android中startActivityForResult怎么使用
    在Android中,startActivityForResult()方法允许你启动一个新的Activity,并且在新的Activit...
    99+
    2023-09-08
    Android
  • Android中ContextMenu怎么使用
    Android中ContextMenu是一种用户界面组件,用于在长按视图时显示上下文操作菜单。下面是使用ContextMenu的基本...
    99+
    2023-10-24
    Android
  • Android中ToggleButton怎么使用
    在Android中,ToggleButton是一个可切换状态的按钮控件,可以用来表示开关状态。下面是使用ToggleButton的步...
    99+
    2023-08-09
    Android ToggleButton
  • Android中MediaPlayer怎么使用
    在Android中使用MediaPlayer需要以下步骤:1. 创建一个MediaPlayer对象:```javaMediaPlay...
    99+
    2023-08-18
    Android MediaPlayer
  • Android中的TimePickerView怎么用
    这篇文章主要介绍“Android中的TimePickerView怎么用”,在日常操作中,相信很多人在Android中的TimePickerView怎么用问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”Andro...
    99+
    2023-06-30
  • Android中dialoginterface怎么使用
    在Android中,DialogInterface是一个接口,用于处理对话框的按钮点击事件。可以通过以下步骤使用DialogInte...
    99+
    2023-08-11
    Android dialoginterface
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作