删除所有消息:将删除状态栏中的所有消息,删除成功则返回true。
删除通知消息属于敏感权限,必须获取通知权限,在sopconfig.xml文件中添加如下字段:
<uses-permission syberos:name="syberos.permission.ACCESS_NOTIFICATION"/>
syberh.notification.removeAllNotifications()
参数
属性 | 类型 | 默认值 | 必填 | 描述 |
success | function | | 否 | 回调成功 |
fail | function | | 否 | 回调失败 |
object.success回调函数
参数
属性 | 类型 | 必填 | 描述 |
result | boolean | 是 | 返回true, 表示执行成功 |
object.fail回调函数
参数
属性 | 类型 | 描述 |
code | String | 错误码 |
msg | String | 错误消息 |
代码示例
syberh.notification.removeAllNotifications({
success: function(result){
console.log('success: ', result);
},
fail: function(error){
console.log('fail: ', error.code, error.msg);
}
});