- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我关注了这个Sample Code of kpBird还有这个Developer Guide
我可以:
调用此服务的 Intent 。
可以从通知中捕获广播。
所以我得到了错误getActiveNotifications always null
。
我不知道为什么,
请知道的人帮帮我,
谢谢,
p/s : 这是源代码和我得到的错误。
错误:
04-28 08:46:11.625: E/AndroidRuntime(7651): FATAL EXCEPTION: main
04-28 08:46:11.625: E/AndroidRuntime(7651): java.lang.RuntimeException: Error receiving broadcast Intent { act=app.trekband.NotificationListener flg=0x10 (has extras) } in utils.NotificationListener$NLServiceReceiver@42680780
04-28 08:46:11.625: E/AndroidRuntime(7651): at android.app.LoadedApk$ReceiverDispatcher$Args.run(LoadedApk.java:778)
04-28 08:46:11.625: E/AndroidRuntime(7651): at android.os.Handler.handleCallback(Handler.java:730)
04-28 08:46:11.625: E/AndroidRuntime(7651): at android.os.Handler.dispatchMessage(Handler.java:92)
04-28 08:46:11.625: E/AndroidRuntime(7651): at android.os.Looper.loop(Looper.java:176)
04-28 08:46:11.625: E/AndroidRuntime(7651): at android.app.ActivityThread.main(ActivityThread.java:5419)
04-28 08:46:11.625: E/AndroidRuntime(7651): at java.lang.reflect.Method.invokeNative(Native Method)
04-28 08:46:11.625: E/AndroidRuntime(7651): at java.lang.reflect.Method.invoke(Method.java:525)
04-28 08:46:11.625: E/AndroidRuntime(7651): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1046)
04-28 08:46:11.625: E/AndroidRuntime(7651): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:862)
04-28 08:46:11.625: E/AndroidRuntime(7651): at dalvik.system.NativeStart.main(Native Method)
04-28 08:46:11.625: E/AndroidRuntime(7651): Caused by: java.lang.NullPointerException
04-28 08:46:11.625: E/AndroidRuntime(7651): at android.os.Parcel.readException(Parcel.java:1437)
04-28 08:46:11.625: E/AndroidRuntime(7651): at android.os.Parcel.readException(Parcel.java:1385)
04-28 08:46:11.625: E/AndroidRuntime(7651): at android.app.INotificationManager$Stub$Proxy.getActiveNotificationsFromListener(INotificationManager.java:518)
04-28 08:46:11.625: E/AndroidRuntime(7651): at android.service.notification.NotificationListenerService.getActiveNotifications(NotificationListenerService.java:149)
04-28 08:46:11.625: E/AndroidRuntime(7651): at utils.NotificationListener$NLServiceReceiver.onReceive(NotificationListener.java:73)
04-28 08:46:11.625: E/AndroidRuntime(7651): at android.app.LoadedApk$ReceiverDispatcher$Args.run(LoadedApk.java:768)
04-28 08:46:11.625: E/AndroidRuntime(7651): ... 9 more
源代码:
我使用这个调用了 NotificationListener 类
:
private NotificationReceiver notificationReceiver;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
if (!Constants.connectivity.isNetworkOnline()) {
// If there is error
Toast.makeText(getActivity(), getString(R.string.toast_failed_connection),
Toast.LENGTH_SHORT).show();
// Exit the application
android.os.Process.killProcess(android.os.Process.myPid());
}
Intent intent = new Intent(getActivity(), NotificationListener.class);
getActivity().startService(intent);
notificationReceiver = new NotificationReceiver();
IntentFilter filter = new IntentFilter();
// Add action
filter.addAction(Notification.NOTIFICATION);
// Register receiver
getActivity().registerReceiver(notificationReceiver,filter);
}
public class NotificationReceiver extends BroadcastReceiver{
@Override
public void onReceive(Context context, Intent intent) {
String temp = intent.getStringExtra("notification_event");
// CURRENTLY THIS VALUE IS NULL
Log.i(TAG, temp + "");
}
}
这是从 NotificationListenerService
扩展而来的 NotificationListener
类
public class NotificationListener extends NotificationListenerService{
private String TAG = NotificationListener.class.getSimpleName();
private NLServiceReceiver mNLServiceReciver;
@Override
public void onCreate() {
super.onCreate();
Log.i(TAG, "onCreate");
mNLServiceReciver = new NLServiceReceiver();
IntentFilter filter = new IntentFilter();
filter.addAction(Notification.NOTIFICATION);
registerReceiver(mNLServiceReciver,filter);
}
@Override
public void onDestroy() {
super.onDestroy();
Log.i(TAG, "onDestroy");
unregisterReceiver(mNLServiceReciver);
}
@Override
public void onNotificationPosted(StatusBarNotification sbn) {
Log.i(TAG,"onNotificationPosted");
Log.i(TAG,"ID :" + sbn.getId() + "\t" + sbn.getNotification().tickerText + "\t" + sbn.getPackageName());
Intent i = new Intent(Notification.NOTIFICATION);
i.putExtra("notification_event","onNotificationPosted :" + sbn.getPackageName() + "\n");
sendBroadcast(i);
}
@Override
public void onNotificationRemoved(StatusBarNotification sbn) {
Log.i(TAG,"onNOtificationRemoved");
Log.i(TAG,"ID :" + sbn.getId() + "\t" + sbn.getNotification().tickerText +"\t" + sbn.getPackageName());
Intent i = new Intent(Notification.NOTIFICATION);
i.putExtra("notification_event","onNotificationRemoved :" + sbn.getPackageName() + "\n");
sendBroadcast(i);
}
public class NLServiceReceiver extends BroadcastReceiver{
@Override
public void onReceive(Context context, Intent intent) {
if(intent.getStringExtra("command").equals("clearall")){
NotificationListener.this.cancelAllNotifications();
} else if(intent.getStringExtra("command").equals("list")){
Intent i1 = new Intent(Notification.NOTIFICATION);
i1.putExtra("notification_event","=====================");
sendBroadcast(i1);
// ERROR HERE
Log.i(TAG, "getActiveNotifications " + getActiveNotifications());
Log.i(TAG, "length " + getActiveNotifications().length);
int i=1;
for (StatusBarNotification sbn : NotificationListener.this.getActiveNotifications()) {
Intent i2 = new Intent(Notification.NOTIFICATION);
i2.putExtra("notification_event",i +" " + sbn.getPackageName() + "\n");
sendBroadcast(i2);
i++;
}
Intent i3 = new Intent(Notification.NOTIFICATION);
i3.putExtra("notification_event","===== Notification List ====");
sendBroadcast(i3);
}
}
}
}
最佳答案
在 Settings -> Security
的 Notification Access
部分启用此应用程序后。
我现在可以从 getActiveNotifications
接收数据了。
谢谢,
关于android - 使用 NotificationListenerService 时 getActiveNotifications 始终为 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23331482/
我有一个 NotificationListenerService 和一个: @Override public void onNotificationPosted(StatusBarNotificati
NotificationListenerService可以用在android wear上吗? orb 是否有某种监听器可以监听可穿戴设备中的调用或通知? 最佳答案 通常我会做的是有一个电话和一个可穿戴
在扩展新的(SDK18,JB-4.3)NotificationListenerService 的服务中,我想获取通知的状态栏图标。 mStatusBarNotification.getNotifica
我在创建扩展 android.service.notification.NotificationListenerService 的服务时遇到问题 根据 https://developer.androi
在 android 4.4 中,我发现一些用户使用我实现的 notificationListenerService 将停止工作。我自己也亲眼见过。 我从来没有设法在它发生时捕捉到任何 logcat,但
我希望这不会违反任何规则,因为我已尝试遵循如何提问指南。 我正在尝试使用 NotificationListenerService 读取传入的通知,它对我有用,但只是部分有用。 它的第一个通知类型,比方
应用程序第一次因为一些错误而崩溃后,再次创建并绑定(bind)了 NLService,但是在第 2 次或第 3 次之后......,不再创建和绑定(bind) NLService,即使是复选框 设置
我正在尝试实现在 android 4.3 中添加的 NotificationListnerService,但我无法获取通知详细信息。 我的代码如下 public class MainActivity
随着 Android M 中 Doze 的引入,Android 在 Doze 期间对后台执行的限制越来越多。有人可以详细说明在扩展 Android 自己的服务时是否同样适用。比如Notificatio
我有一个派生自 NotificationListenerService 的类,它会在应用程序启动时自动为我创建和启动。但是,我想稍后从 Activity 中懒惰地启动该服务,而不是在应用程序启动时自动
我在我的 android 应用程序中从 Intentservice 启动前台服务,服务开始通知。这就是我开始服务的方式: Intent intent = new Intent(this, Naviga
我现在已经尝试了 10 多个小时,但我似乎无法考虑任何其他事情。我尝试了互联网上所有可能的示例,但没有成功。 我有扩展NotificationListenerService的NotificationM
我有一个 app还有一个 NotificationListenerService。当我在该 NotificationListenerService 中添加断点时,断点似乎停止了执行,但调试器无法识别它
我已经实现了 NotificationListenerService,但它不工作。这是服务: public class NotificationListener extends Notificatio
是否可以阅读在用户移动时定期显示的 Google map 导航通知? 例如,距离下一回合的剩余距离会定期更新。为此,我尝试使用 NotificationListenerService,但当我尝试使用
我会收听 WhatsApp 消息等通知。 但每次通知进入 NotificationListenerService 时都会触发两次。 有人知道这个问题吗?? 这是 AndroidManifest.xml
我在写 NotificationListenerService , 我想在其中获取发送到状态栏的通知的详细信息。 但我们唯一得到的是 Ticket text ,在某些情况下它是 null。 最佳答案
下面是我捕获通知的代码。我不明白为什么 onNotificationPosted 没有被解雇。 我正在通过“设置”>“安全”授予我的应用通知访问权限,MyNotifService 中的 onCreat
我有一个简单的 NotificationListenerService 实现来测试新的 4.3 API。该服务本身曾经工作过。之后,我添加了在添加特定包的通知时发送广播。现在,只要我启动该服务,它就会
我在对抗 NotificationListenerService 时运气不佳。我尝试了很多在这里和那里找到的食谱,尤其是关于……但它的效果很不一致。 先看代码: list :
我是一名优秀的程序员,十分优秀!