鸿蒙next之如何实现防截屏功能

在HarmonyOS next中实现防截屏主要有两种方式

setWindowPrivacyMode设置窗口是否为隐私模式,设置为隐私模式的窗口,窗口内容将无法被截屏或录屏。此接口可用于禁止截屏/录屏的场景。

方式一: 在onWindowStageCreate回调中设置主窗口为隐私模式,具体可参考示例代码:

js 复制代码
import { window } from '@kit.ArkUI'; 
import { BusinessError } from '@kit.BasicServicesKit';
 onWindowStageCreate(windowStage: window.WindowStage): void { 
    // Main window is created, set main page for this ability 
    hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onWindowStageCreate'); 
    // 获取主窗口 
    windowStage.getMainWindow((err: BusinessError, data) => { 
      let errCode: number = err.code; 
      if (errCode) { 
        console.error('Failed to obtain the main window. Cause: ' + JSON.stringify(err)); 
        return; 
      } 
      let windowClass: window.Window = data; 
      console.info('Succeeded in obtaining the main window. Data: ' + JSON.stringify(data)); 
      // 设置窗口隐私模式 
      let isPrivacyMode: boolean = true; 
      try { 
        windowClass.setWindowPrivacyMode(isPrivacyMode, (err: BusinessError) => { 
          const errCode: number = err.code; 
          if (errCode) { 
            console.error('Failed to set the window to privacy mode. Cause:' + JSON.stringify(err)); 
            return; 
          } 
          console.info('Succeeded in setting the window to privacy mode.'); 
        }); 
      } catch (exception) { 
        console.error('Failed to set the window to privacy mode. Cause:' + JSON.stringify(exception)); 
      } 
    }) 
    windowStage.loadContent('pages/Index', (err, data) => { 
      if (err.code) { 
        hilog.error(0x0000, 'testTag', 'Failed to load the content. Cause: %{public}s', JSON.stringify(err) ?? ''); 
        return; 
      } 
      hilog.info(0x0000, 'testTag', 'Succeeded in loading the content. Data: %{public}s', JSON.stringify(data) ?? ''); 
    }); 
  }

方式二: 进入页面开启隐式模式,离开页面取消,具体可参考以下步骤:

首先在module.json5文件中声明需要使用的ohos.permission.PRIVACY_WINDOW 权限

js 复制代码
"requestPermissions": [
  {"name": "ohos.permission.PRIVACY_WINDOW"}
]

然后在进入页面时触发onPageShow回调,调用setWindowPrivacyMode设置窗口为隐私模式,离开页面时触发onPageHide回调,设置窗口为非隐私模式,参考示例代码如下:

js 复制代码
import { BusinessError } from '@kit.BasicServicesKit';
import { common } from '@kit.AbilityKit';
import { window } from '@kit.ArkUI';

class windowUtils {
  static setWindowPrivacyModeInPage(context: common.UIAbilityContext, isFlag: boolean) {
    window.getLastWindow(context).then((lastWindow) => {
      lastWindow.setWindowPrivacyMode(isFlag, (err: BusinessError) => {
        const errCode: number = err.code;
        if (errCode) {
          console.error('Failed to set the window to privacy mode. 1Cause:' + JSON.stringify(err));
          return;
        }
        console.info('Succeeded in setting the window to privacy mode.');
      });
    })
  }
}

@Entry
@Component
struct Index {
  @State message: string = 'Hello World';

  onPageShow() {
    windowUtils.setWindowPrivacyModeInPage(getContext(this) as common.UIAbilityContext, true);
  }

  onPageHide() {
    windowUtils.setWindowPrivacyModeInPage(getContext(this) as common.UIAbilityContext, false);
  }

  build() {
    RelativeContainer() {
      Text(this.message)
        .id('HelloWorld')
        .fontSize(50)
        .fontWeight(FontWeight.Bold)
        .alignRules({
          center: { anchor: '__container__', align: VerticalAlign.Center },
          middle: { anchor: '__container__', align: HorizontalAlign.Center }
        })
    }
    .height('100%')
    .width('100%')
  }
}
相关推荐
nemo2012_202019 分钟前
VisualRules华为应用场景介绍
华为·规则引擎·财务系统·财经系统
深海的鲸同学 luvi3 小时前
【HarmonyOS NEXT】鸿蒙原生应用“上述”
华为·harmonyos
play_big_knife3 小时前
鸿蒙项目云捐助第二十八讲云捐助项目首页组件云数据库加载轮播图
数据库·华为·harmonyos·鸿蒙·云开发·鸿蒙开发·鸿蒙技术
李洋-蛟龙腾飞公司9 小时前
HarmonyOS Next 应用元服务开发-应用接续动态配置迁移按需迁移页面
华为·harmonyos
JasonYin~9 小时前
HarmonyOS NEXT 实战之元服务:静态案例效果---查看手机历史记录
华为·harmonyos
鸿蒙程序媛9 小时前
2024最新鸿蒙开发面试题合集(二)-HarmonyOS NEXT Release(API 12 Release)
harmonyos·harmonyos面试题
No Silver Bullet10 小时前
HarmonyOS NEXT开发进阶(五):装饰器讲解
华为·harmonyos
塞尔维亚大汉11 小时前
【OpenHarmony】 鸿蒙 UI开发之MultiType
harmonyos·arkui
yangyj13 小时前
浅谈鸿蒙应用 Http Axios 请求组件泛型封装,支持 UI 响应式更新
harmonyos
华海渡15 小时前
HarmonyOS初步探索
华为·harmonyos