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);
}
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
- 最新
- 最热
只看作者