Autojs – 通知监听

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
喜欢就支持一下吧
点赞0 分享
评论 共5条

请登录后发表评论