监听通知栏失败,请教大佬!
autojs吧
全部回复
仅看楼主
level 4
这个是自带的监控通知栏示例,运行之后会有错误提示,请问各位大佬,这个是什么情况??
auto();
events.observeNotification();
events.onNotification(function(notification){
printNotification(notification);
});
toast("监听中,请在日志中查看记录的通知及其内容");
function printNotification(notification){
log("应用包名: " + notification.getPackageName());
log("通知文本: " + notification.getText());
log("通知优先级: " + notification.priority);
log("通知目录: " + notification.category);
log("通知时间: " + new Date(notification.when));
log("通知数: " + notification.number);
log("通知摘要: " + notification.tickerText);
}
---------------------------------------
错误提示:
[Extension Host] 18:37:25.764/E: Wrapped android.util.AndroidRuntimeException: Calling startActivity() from outside of an Activity context requires the FLAG_ACTIVITY_NEW_TASK flag. Is this really what you want? (<[remote]阅读>#11)
at script(<[remote]阅读>:11)
console.ts:134 [Extension Host]
2019年03月11日 10点03分 1
level 12
侧拉打开通知栏权限
2019年03月12日 03点03分 2
可以了,谢谢
2019年03月12日 12点03分
level 2
autojs里,左边侧拉,开启通知读取权限
2021年07月13日 06点07分 3
1