// 判断是否开启监听通知权限
if (NotificationManagerCompat.getEnabledListenerPackages(this).contains(getPackageName())) {
Intent serviceIntent =new Intent(this, GuardNotificationListenerService.class);
startService(serviceIntent);
}else {
// 去开启 监听通知权限
startActivity(new Intent(“android.settings.ACTION_NOTIFICATION_LISTENER_SETTINGS”));
}
}
实现监听服务 NotificationListenerService
import android.app.Notification;
import android.nfc.Tag;
import android.os.Bundle;
import android.service.notification.NotificationListenerService;
import android.service.notification.StatusBarNotification;
import android.text.SpannableString;
import android.text.TextUtils;
import com.mo.util.Log;
/**
-
@Description:
-
@Author: lhw
-
@CreateDate: 2020/2/22 17:59
*/
public class GuardNotificationListenerService extends NotificationListenerService {
public final static String TAG=GuardNotificationListenerService.class.getSimpleName();
@Override
public void onListenerConnected() {
super.onListenerConnected();
Log.d(TAG,“onListenerConnected”);
}
@Override
public void onListenerDisconnected() {
super.onListenerDisconnected();
Log.d(TAG,“onListenerDisconnected”);
}
@Override
public void onNotificationPosted(StatusBarNotification sbn) {
Log.d(TAG,“onNotificationPosted”);
showMsg(sbn);
}
private void showMsg(StatusBarNotification sbn) {
Bundle extras = sbn.getNotification().extras;
String packageName = sbn.getPackageName();
if (extras!=null){
//获取通知消息标题
String title = extras.getString(Notification.EXTRA_TITLE);
// 获取通知消息内容
Object msgText = extras.getCharSequence(Notification.EXTRA_TEXT);
//注意:获取的通知信息和短信的传递内容不一样 短信为SpannableString 这里容易造成转换异常
if (msgText instanceof SpannableString){
Log.d(TAG,“is SpannableString …”+((SpannableString) msgText).subSequence(0,((SpannableString) msgText).length()));
}else{
Log.d(TAG,“showMsg packageName=”+packageName+“,title=”+title+“,msgText=”+msgText);
}
}else{
最后
自我介绍一下,小编13年上海交大毕业,曾经在小公司待过,也去过华为、OPPO等大厂,18年进入阿里一直到现在。
深知大多数初中级Android工程师,想要提升技能,往往是自己摸索成长,自己不成体系的自学效果低效漫长且无助。
因此我收集整理了一份《2024年Android移动开发全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友,同时减轻大家的负担。
既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,基本涵盖了95%以上Android开发知识点!不论你是刚入门Android开发的新手,还是希望在技术上不断提升的资深开发者,这些资料都将为你打开新的学习之门
如果你觉得这些内容对你有帮助,需要这份全套学习资料的朋友可以戳我获取!!
由于文件比较大,这里只是将部分目录截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且会持续更新!
提升的资深开发者,这些资料都将为你打开新的学习之门**
如果你觉得这些内容对你有帮助,需要这份全套学习资料的朋友可以戳我获取!!
由于文件比较大,这里只是将部分目录截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且会持续更新!