NotificationListenerService是通过系统调起的服务,在应用发起通知时,系统会将通知的应用,动作和信息回调给NotificationListenerService。但使用之前需要引导用户进行授权。使用NotificationListenerService一般需要下面三个步骤。
注册服务
首先需要在AndroidManifest.xml对service进行注册。
<service
android:name=.NotificationCollectorService
android:label=@string/app_name
android:permi
1