更新记录
1.1.1(2025-04-05)
优化
1.1.0(2025-02-28)
修改源码付费
1.0.9(2025-02-18)
增加重新启动自动连接
查看更多平台兼容性
Vue2 | Vue3 |
---|---|
√ | √ |
App | 快应用 | 微信小程序 | 支付宝小程序 | 百度小程序 | 字节小程序 | QQ小程序 |
---|---|---|---|---|---|---|
HBuilderX 3.6.8,Android:4.4,iOS:不支持,HarmonyNext:不确定 | × | × | × | × | × | × |
钉钉小程序 | 快手小程序 | 飞书小程序 | 京东小程序 | 鸿蒙元服务 |
---|---|---|---|---|
× | × | × | × | × |
H5-Safari | Android Browser | 微信浏览器(Android) | QQ浏览器(Android) | Chrome | IE | Edge | Firefox | PC-Safari |
---|---|---|---|---|---|---|---|---|
× | × | × | × | × | × | × | × | × |
android-notiation
长期维护,有任何问题在插件群联系
推荐作者保活插件一起使用
uniapp
复制代码import {NotifationListener} from "@/uni_modules/android-notiation"
var listener=new NotifationListener();
listener.setMessageListener();
listener.listenerMessage(function( pkg, title, msg){
// showToast(pkg+"\n"+title+"\n"+msg)
that.msg="包名:"+pkg+"\n"+"标题:"+title+"\n内容:"+msg;
})
listener.listenerMessageState(function(state){
})
listener.listenerRemoveMessage(function( pkg, title, msg){
})
listener.openListener();
uniappx
复制代码import {NotifationListener} from "@/uni_modules/android-notiation"
var listener:NotifationListener|null=null;
listener=new NotifationListener();
listener?.setMessageListener();
var that=this;
listener?.listenerMessage(function( pkg:string, title:string, msg:string){
// showToast(pkg+"\n"+title+"\n"+msg)
that.msg="包名:"+pkg+"\n"+"标题:"+title+"\n内容:"+msg;
})
listener?.listenerMessageState(function(state:boolean){
showToast(state.toString()+"")
})
listener?.listenerRemoveMessage(function( pkg:string, title:string, msg:string){
// showToast(pkg+"\n"+title+"\n"+msg)
// that.msg="包名:"+pkg+"\n"+"标题:"+title+"\n内容:"+msg;
})
listener?.openListener();
NotifationListener 对象
api
是否开启通知权限
isNotifationListener
return boolean
复制代码var b=listener.isNotifationListener();
打开通知设置
openNotifationSetting
复制代码listener.openNotifationSetting()
收通知栏消息
openListener
复制代码listener.openListener();
关闭接收通知栏消息
closeListener
复制代码listener.closeListener();
接收通知栏消息
listenerMessage
参数1 方法function 参数1 string 参数2 string 参数3 string uniappx
复制代码listener?.listenerMessage(function( pkg:string, title:string, msg:string){
// showToast(pkg+"\n"+title+"\n"+msg)
that.msg="包名:"+pkg+"\n"+"标题:"+title+"\n内容:"+msg;
})
uniapp
复制代码listener.listenerMessage(function( pkg, title, msg){
// showToast(pkg+"\n"+title+"\n"+msg)
that.msg="包名:"+pkg+"\n"+"标题:"+title+"\n内容:"+msg;
})
移除通知栏消息时调用
listenerRemoveMessage
参数1 方法function 参数1 string 参数2 string 参数3 string uniappx
复制代码listener.listenerRemoveMessage(function( pkg:string, title:string, msg:string){
// showToast(pkg+"\n"+title+"\n"+msg)
// that.msg="包名:"+pkg+"\n"+"标题:"+title+"\n内容:"+msg;
})
uniapp
复制代码listener.listenerRemoveMessage(function( pkg, title, msg){
// showToast(pkg+"\n"+title+"\n"+msg)
// that.msg="包名:"+pkg+"\n"+"标题:"+title+"\n内容:"+msg;
})