我在stackoverflow上搜索了很多次。 如果存在通知,我找到了isexists方法。但是当我尝试它时,它总是返回null。我的错误在哪里?
我在我的服务类和服务类中运行此代码,我创建了这样的通知:
NotificationBck_l a;
a= new NotificationBck_l(context);
a.createNotification();
我的方法就在这里(它也在我的服务类中):
private boolean isNotificationVisible_l() {
Intent notificationIntent = new Intent(context, NotificationBck.class);
PendingIntent test = PendingIntent.getActivity(context, NOT_ID, notificationIntent, PendingIntent.FLAG_NO_CREATE);
return test != null;
}