setWindowPrivacyMode HarmonyOS 鸿蒙Next

setWindowPrivacyMode HarmonyOS 鸿蒙Next

setWindowPrivacyMode  
设置隐私模式是不是页面必须是@entry,nav组件不行
3 回复

设置

setWindowPrivacyMode隐私窗口模式,是对于window窗口进行设置。

和页面或者navi没关系。

更多关于setWindowPrivacyMode HarmonyOS 鸿蒙Next的实战系列教程也可以访问 https://www.itying.com/category-93-b0.html


设置隐私模式不是一定要在@entry装饰的自定义组件。可参考如下代码:

import { uiObserver, window } from '@kit.ArkUI';
import { BusinessError } from '@kit.BasicServicesKit';

// 该示例演示NavDestination的生命周期时序。
@Component
struct PageOneComponent {
  private stack: NavPathStack | null = null;
  @State eventStr: string = "";
  @State message:string = ''
  @State isPrivacyMode: boolean = true;

  /**
   * 设置窗口隐私的方法
   */
  setPrivacyMode(){
    try {
      window.getLastWindow(getContext(), (err: BusinessError, data) => {
        const errCode = err.code;
        if (errCode) {
          return;
        }
        let promise = data.setWindowPrivacyMode(this.isPrivacyMode);
        promise.then(() => {
          this.message = "隐私模式";
          console.log('已成功将窗口设置为隐私模式.');
        }).catch((err: BusinessError) => {
          console.error('Failed to set the window to privacy mode. Cause: ' + JSON.stringify(err));
        });
      })

    } catch (exception) {
      console.error('Failed to set the window to privacy mode. Cause:' + JSON.stringify(exception));
    }
  }

  build() {
    NavDestination() {
      Column({space:10}) {
        Text("event: " + this.eventStr)
        Button('pushPath', { stateEffect: true, type: ButtonType.Capsule })
          .width('80%')
          .height(40)
          .margin(20)
          .onClick(() => {
            if (this.stack) {
              this.stack.pushPath({ name: "pageOne" });
            }
          })
        Button('pop', { stateEffect: true, type: ButtonType.Capsule })
          .width('80%')
          .height(40)
          .margin(20)
          .onClick(() => {
            this.stack?.pop()
          })

        Button('设置隐私').onClick(()=>{
          this.setPrivacyMode()
        })
      }
      .width('100%')
      .height('100%')
    }
    .title('pageOne')
    .onAppear(() => {
      this.eventStr += "<onAppear>";
    })
    .onDisAppear(() => {
      this.eventStr += "<onDisAppear>";
    })
    .onShown(() => {
      this.eventStr += "<onShown>";
    })
    .onHidden(() => {
      this.eventStr += "<onHidden>";
    })
    .onWillAppear(() => {
      this.eventStr += "<onWillAppear>";
    })
    .onWillDisappear(() => {
      this.eventStr += "<onWillDisappear>";
    })
    .onWillShow(() => {
      this.eventStr += "<onWillShow>";
    })
    .onWillHide(() => {
      this.eventStr += "<onWillHide>";
    })
    // onReady会在onAppear之前调用
    .onReady((ctx: NavDestinationContext) => {
      try {
        this.eventStr += "<onReady>";
        this.stack = ctx.pathStack;
      } catch (e) {
        console.log(`testTag onReady catch exception: ${JSON.stringify(e)}`)
      }
    })
  }
}

@Entry
@Component
struct NavigationExample3 {
  private stack: NavPathStack = new NavPathStack();

  aboutToAppear(): void {
    console.log("aboutToAppear")
  }

  @Builder
  PageMap(name: string) {
    if (name === 'pageOne') {
      PageOneComponent()
    }
  }

  build() {
    Navigation(this.stack) {
      Stack({ alignContent: Alignment.Center }) {
        Button('pushPath', { stateEffect: true, type: ButtonType.Capsule })
          .width('80%')
          .height(40)
          .margin(20)
          .onClick(() => {
            this.stack.pushPath({ name: "pageOne" })
          })
      }
      .width('100%')
      .height('100%')
    }
    .width('100%')
    .height('100%')
    .navDestination(this.PageMap)
    .title('Navigation')
  }
}

在鸿蒙Next中,setWindowPrivacyMode 是一个用于设置窗口隐私模式的API。该API允许开发者在应用中对特定窗口进行隐私保护,防止敏感信息被截屏或录屏。具体来说,当窗口被设置为隐私模式时,系统会阻止对该窗口内容的截屏或录屏操作,确保用户隐私数据的安全。

setWindowPrivacyMode 的使用场景通常涉及需要保护用户隐私的应用,如银行、支付、聊天等应用。通过调用该API,开发者可以在特定时刻(如用户输入密码或查看敏感信息时)启用隐私模式,防止未经授权的截屏或录屏操作。

在鸿蒙Next中,setWindowPrivacyMode 的调用方式如下:

// 假设 window 是当前应用的窗口对象
window.setWindowPrivacyMode(true); // 启用隐私模式
window.setWindowPrivacyMode(false); // 关闭隐私模式

该API的调用会立即生效,系统会根据设置的状态对窗口的截屏和录屏行为进行控制。开发者需要根据应用的具体需求,合理使用该API,以确保用户隐私数据的安全。

回到顶部