HarmonyOS 全屏loading

在不依赖page的情况下如何实现全屏的loading效果

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

可以使用应用子窗口功能,相关文档:https://developer.huawei.com/consumer/cn/doc/harmonyos-guides-V5/application-window-stage-V5

重点需要关注WindowStage的生命周期,在WindowStage生效后进行相关操作。

参考代码:

//EntryAbility.ets:

import AbilityConstant from '@ohos.app.ability.AbilityConstant';
import hilog from '@ohos.hilog';
import UIAbility from '@ohos.app.ability.UIAbility';
import Want from '@ohos.app.ability.Want';
import window from '@ohos.window';
import { BusinessError } from '@ohos.base';

export default class EntryAbility extends UIAbility {
  onCreate(want: Want, launchParam: AbilityConstant.LaunchParam) {
    hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onCreate');
  }

  onDestroy() {
    hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onDestroy');
  }

  onWindowStageCreate(windowStage: window.WindowStage) {
    // Main window is created, set main page for this ability
    hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onWindowStageCreate');

    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;
      }
      //子窗口创建
      let promise=windowStage.createSubWindow("subWindow");
      promise.then((data)=>{
        globalThis.subWindow=data;
        globalThis.subWindow.setUIContent("pages/Page2")
        globalThis.subWindow.resize(800,600);
        globalThis.subWindow.moveWindowTo(50,150);
      })
        .catch((err:BusinessError)=>{
          console.error('Failed to create the subwindow. Cause: ' + JSON.stringify(err));
        })
      hilog.info(0x0000, 'testTag', 'Succeeded in loading the content. Data: %{public}s', JSON.stringify(data) ?? '');
    });
  }

  onWindowStageDestroy() {
    // Main window is destroyed, release UI related resources
    //子窗口销毁
    globalThis.subWindow.destroy();
    hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onWindowStageDestroy');
  }

  onForeground() {
    // Ability has brought to foreground
    hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onForeground');
  }

  onBackground() {
    // Ability has back to background
    hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onBackground');
  }

  //Index.ets:

  import window from '@ohos.window'
  import { BusinessError } from '@ohos.base'

@Entry
@Component
struct Index {
  @State message: string = '-----------'
  //private windowClass:window.Window|null;

  build() {
    Row() {
      Column() {
        Text(this.message)
          .fontSize(50)
          .fontWeight(FontWeight.Bold)
        Button(){
          Text("实验")
        }
        .width(80)
        .height(60)
        .onClick(()=>{
          this.message="实验已开始"
          //窗口显示
          globalThis.subWindow.showWindow();
        })
      }
      .width('100%')
    }
    .height('100%')
  }
}
//Page2.ets:

import { BusinessError } from '@ohos.base'
import window from '@ohos.window'
import router from '@ohos.router'

@Entry
@Component
struct Page2 {
  @State message: string = '子窗口'

  build() {
    Row() {
      Column() {
        Text(this.message)
          .fontSize(30)
          .fontWeight(FontWeight.Bold)
        Button(){
          Text("隐藏")
        }
        .width(80)
        .height(60)
        .onClick(()=>{
          try {
            //子窗口隐藏
            globalThis.subWindow.hide();
          } catch (exception) {
            console.error('Failed to create the window. Cause: ' + JSON.stringify(exception));
          }
        })
      }
      .width('100%')
    }
    .height('100%')
    .backgroundColor(Color.Green)
  }
}
分享
微博
QQ
微信
回复
13h前
相关问题
HarmonyOS 全局loading
44浏览 • 1回复 待解决
HarmonyOS 网络请求loading
53浏览 • 1回复 待解决
HarmonyOS 网络请求loading
44浏览 • 1回复 待解决
HarmonyOS 全局的loading组件
342浏览 • 1回复 待解决
HarmonyOS Loading提示插件问题
724浏览 • 1回复 待解决
HarmonyOS loading 跨页面实现方式?
72浏览 • 1回复 待解决
HarmonyOS 全局loading的菊花如何实现?
418浏览 • 1回复 待解决
HarmonyOS 全局loading有什么方案吗
44浏览 • 1回复 待解决
HarmonyOS 没有全局的api loading动画
429浏览 • 1回复 待解决
HarmonyOS 是否有全局loading这种控件?
417浏览 • 1回复 待解决
HarmonyOS 如何在全局使用loading组件?
753浏览 • 1回复 待解决
HarmonyOS通过方法调用的loading有吗?
438浏览 • 0回复 待解决
HarmonyOS struct全屏问题
255浏览 • 1回复 待解决
HarmonyOS poppuwindow无法全屏
302浏览 • 1回复 待解决
HarmonyOS 无法全屏问题
63浏览 • 1回复 待解决
鸿蒙JS开发 接口请求loading?
5605浏览 • 1回复 待解决
如何通过Progress实现loading效果?
436浏览 • 1回复 待解决
HarmonyOS Lottie无法全屏加载
99浏览 • 1回复 待解决
HarmonyOS 华为地图全屏
43浏览 • 1回复 待解决
HarmonyOS page设置全屏问题
8浏览 • 1回复 待解决