HarmonyOS 鸿蒙Next如何设置屏幕亮度呢
HarmonyOS 鸿蒙Next如何设置屏幕亮度呢
如何设置屏幕亮度呢
系统模块@ohos.brightness (屏幕亮度)无法导入
2 回复
[@ohos](/user/ohos).brightness 这个接口已经停止维护了,可以通过[@ohos](/user/ohos).window的setWindowBrightness设置
文档参考:https://developer.huawei.com/consumer/cn/doc/harmonyos-references-V5/js-apis-window-V5
demo如下:
window.getLastWindow(getContext(this))
.then((windowClass: window.Window) => {
windowClass.setWindowBrightness(this.num);
})
更多关于HarmonyOS 鸿蒙Next如何设置屏幕亮度呢的实战系列教程也可以访问 https://www.itying.com/category-93-b0.html