HarmonyOS 鸿蒙Next:如何在手机息屏时调用API点亮屏幕,亮屏时控制息屏
HarmonyOS 鸿蒙Next:如何在手机息屏时调用API点亮屏幕,亮屏时控制息屏
在官网中找到可以设置屏幕常亮的方法,但是没有找到可以控制屏幕息屏和亮屏的方法
求助社区大佬们,如何在手机息屏的时候,调用api点亮屏幕,在亮屏时,可以控制用息屏
win.setWindowKeepScreenOn(isKeepScreenOn, (err: BusinessError) => {
});
关于HarmonyOS 鸿蒙Next:如何在手机息屏时调用API点亮屏幕,亮屏时控制息屏的问题,您也可以访问:https://www.itying.com/category-93-b0.html 联系官网客服。
有要学HarmonyOS AI的同学吗,联系我:https://www.itying.com/goods-1206.html
可以通过setWindowBrightness这只屏幕亮度,如果brightness 设置为0表示息屏
import window from '[@ohos](/user/ohos).window'; import { BusinessError } from '[@ohos](/user/ohos).base'; let brightness: number = 1; let windowClass: window.Window = window.findWindow("test"); try { windowClass.setWindowBrightness(brightness, (err: BusinessError) => { const errCode: number = err.code; if (errCode) { console.error('Failed to set the brightness. Cause: ' JSON.stringify(err)); return; } console.info('Succeeded in setting the brightness.'); }); } catch (exception) { console.error('Failed to set the brightness. Cause: ' JSON.stringify(exception)); }
找HarmonyOS工作还需要会Flutter的哦,有需要Flutter教程的可以学学大地老师的教程,很不错,B站免费学的哦:https://www.bilibili.com/video/BV1S4411E7LY/?p=17