swan.setKeepScreenOn
解释:设置是否保持常亮状态。仅在当前智能小程序生效,离开智能小程序后设置失效。
方法参数
Object object
object 参数说明
属性名 | 类型 | 必填 | 默认值 | 说明 |
---|---|---|---|---|
keepScreenOn | Boolean | 是 | 是否保持屏幕常亮 | |
success | Function | 否 | 接口调用成功的回调 | |
fail | Function | 否 | 接口调用失败的回调函数 | |
complete | Function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
示例
扫码体验
请使用百度APP扫码
图片示例
代码示例
- 在 js 文件中
Page({
setKeepScreenOn() {
swan.setKeepScreenOn({
keepScreenOn: true,
success: res => {
console.log('keepScreenOn success', res);
},
fail: err => {
console.log('keepScreenOn fail', err);
}
});
}
});
错误码
Android
错误码 | 说明 |
---|---|
201 | 解析失败,请检查调起协议是否合法 |
202 | 解析失败,请检查参数是否正确 |
1001 | 执行失败 |
iOS
错误码 | 说明 |
---|---|
202 | 解析失败,请检查参数是否正确 |