屏幕亮度
扫码体验:
my.setKeepScreenOn(OBJECT)
基础库版本 1.3.0 开始支持,低版本需做兼容处理
设置是否保持屏幕长亮状态。仅在当前小程序生效,离开小程序后失效。
OBJECT 参数说明
参数 | 类型 | 必填 | 说明 |
---|
keepScreenOn | Boolean | 是 | 是否保持屏幕长亮状态 |
success | Function | 否 | 接口调用成功的回调函数 |
fail | Function | 否 | 接口调用失败的回调函数 |
complete | Function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
示例代码
my.setKeepScreenOn({
keepScreenOn: true,
success: (res) => {
},
fail: (res) => {
},
})
my.getScreenBrightness(OBJECT)
基础库版本 1.4.0 开始支持,低版本需做兼容处理获取屏幕亮度
OBJECT 参数说明
参数 | 类型 | 必填 | 说明 |
---|
success | Function | 否 | 接口调用成功的回调函数 |
fail | Function | 否 | 接口调用失败的回调函数 |
complete | Function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
示例代码
my.getScreenBrightness({
success: (res) => {
console.log(JSON.stringify(res))
},
fail: (res) => {
},
})
my.setScreenBrightness(OBJECT)
基础库版本 1.4.0 开始支持,低版本需做兼容处理设置屏幕亮度
OBJECT 参数说明
参数 | 类型 | 必填 | 说明 |
---|
brightness | Number | 是 | 需要设置的屏幕亮度,取值范围0-1 |
success | Function | 否 | 接口调用成功的回调函数 |
fail | Function | 否 | 接口调用失败的回调函数 |
complete | Function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
示例代码
my.setScreenBrightness({
brightness:0.5,
success: (res) => {
console.log(JSON.stringify(res))
},
fail: (res) => {
},
})
原文: https://docs.alipay.com/mini/api/screen-brightness