HarmonyOS 如何设置屏幕常亮并设置屏幕亮度最高?

HarmonyOS
5h前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
Heiang

请参考以下代码,通过点击事件设置屏幕常亮,也可以根据业务需求通过其他方式设置:

import { BusinessError } from '@ohos.base';
import { window } from '@kit.ArkUI';
import common from '@ohos.app.ability.common';
@Entry
@Component
struct WebPage {
  private context = getContext(this) as common.UIAbilityContext;
  controller: webView.WebviewController = new webView.WebviewController();
  build() {
    Column() {
      Button('keeplight')
        .onClick(() => {
          // 1.获取应用主窗口。
          let windowClass: window.Window | undefined = undefined;
          try {
            window.getLastWindow(this.context, (err: BusinessError, data) => {
              const errCode: number = err.code;
              if (errCode) {
                console.error('Failed to obtain the top window. Cause: ' + JSON.stringify(err));
                return;
              }
              windowClass = data;
              console.info('Succeeded in obtaining the top window. Data: ' + JSON.stringify(data));
              try {
                windowClass.setWindowKeepScreenOn(true, (err: BusinessError) => {
                  const errCode: number = err.code;
                  if (errCode) {
                    console.error('Failed to set the screen to be always on. Cause: ' + JSON.stringify(err));
                    return;
                  }
                  console.info('Succeeded in setting the screen to be always on.');
                });
              } catch (exception) {
                console.error('Failed to set the screen to be always on. Cause: ' + JSON.stringify(exception));
              }
            });
          } catch (exception) {
            console.error('Failed to obtain the top window. Cause: ' + JSON.stringify(exception));
          }
        })
    }
  }
}

点击按钮控制台输出

05-15 14:48:04.050   12178-12178  A03d00/JSAPP                   com.examp...lication  I     Succeeded in obtaining the top window. Data: {}
05-15 14:48:04.059   12178-12178  A03d00/JSAPP                   com.examp...lication  I     Succeeded in setting the screen to be always on.
分享
微博
QQ
微信
回复
3h前
相关问题
关于设置屏幕问题
582浏览 • 1回复 待解决
HarmonyOS 如何保持屏幕不休眠
579浏览 • 1回复 待解决
HarmonyOS 如何设置屏幕亮度呢?
511浏览 • 1回复 待解决
如何保持屏幕,有api吗。
804浏览 • 1回复 待解决
屏幕如何实现,有哪位知道啊?
377浏览 • 1回复 待解决
如何保持屏幕,你知道吗?
2312浏览 • 1回复 待解决
HarmonyOS 获取和设置屏幕亮度方法?
124浏览 • 0回复 待解决
如何设置屏幕亮度有知道的吗?
1812浏览 • 1回复 待解决
获取和设置应用内屏幕亮度
1051浏览 • 1回复 待解决
如何在native层获取屏幕亮度
1845浏览 • 1回复 待解决
HarmonyOS如何设置应用跟随屏幕旋转?
350浏览 • 1回复 待解决
获取系统的屏幕亮度
488浏览 • 1回复 待解决
如何设置屏幕方向为横屏
1243浏览 • 1回复 待解决
设置飞行模式,屏幕找图
4252浏览 • 1回复 待解决
如何监听手机屏幕的灭屏和屏?
636浏览 • 1回复 待解决
是否有获取当前屏幕亮度的值的API
2106浏览 • 1回复 待解决