DevEco Studio和系统升级后,EntryAbility.ets文件创建悬浮窗失败

在DevEco Studio和系统升级前,在EntryAbility.ets文件可以创建悬浮窗,升级到最新的之后创建失败。

代码如下:

let floatWindowClass: window.Window | null = null; 
// 1.创建悬浮窗 
const config: window.Configuration = { 
  name: "floatWindow", windowType: window.WindowType.TYPE_FLOAT, ctx: this.context 
}; 
window.createWindow(config, (err: BusinessError, data) => { 
  let errCode: number = err.code; 
  if (errCode) { 
    console.error('floatWindowClass Failed to create the floatWindow. Cause: ' + JSON.stringify(err)); 
    return; 
  } 
  console.info('floatWindowClass Succeeded in creating the floatWindow. Data: ' + JSON.stringify(data)); 
  { 
    let errCode: number = err.code; 
    if (errCode) { 
      console.error('floatWindowClass Failed to create the floatWindow. Cause: ' + JSON.stringify(err)); 
      return; 
    } 
    console.info('floatWindowClass Succeeded in creating the floatWindow. Data: ' + JSON.stringify(data)); 
    floatWindowClass = data; 
    AppStorage.setOrCreate('floatWindowClass', floatWindowClass); 
    // 2.悬浮窗窗口创建成功后,设置悬浮窗的位置、大小及相关属性等。 
    floatWindowClass.moveWindowTo(0, 604, (err: BusinessError) => { 
      let errCode: number = err.code; 
      if (errCode) { 
        console.error('floatWindowClass Failed to move the window. Cause:' + JSON.stringify(err)); 
        return; 
      } 
      console.info('floatWindowClass Succeeded in moving the window.'); 
    }); 
    // 3.为悬浮窗加载对应的目标页面。 
    floatWindowClass.setUIContent("pages/view/AudioComponent", (err: BusinessError) => { 
      let errCode: number = err.code; 
      if (errCode) { 
        console.error('floatWindowClass Failed to load the content. Cause:' + JSON.stringify(err)); 
        return; 
      } 
      console.info('floatWindowClass Succeeded in loading the content.'); 
    }); 
 
    floatWindowClass.on('windowEvent', (data) => { 
      EmitterUtils.sendEvent(EmitterEventId.AUDIO_WINDOW_TYPE, data) 
    }); 
  })
HarmonyOS
2024-08-11 13:21:37
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
Heiang
分享
微博
QQ
微信
回复
2024-08-11 20:44:28
相关问题
系统升级HarmonyOS系统app签名问题
811浏览 • 1回复 待解决
使用悬浮端内want唤醒APP
790浏览 • 1回复 待解决
DevEco Studio 升级的一些问题
9905浏览 • 1回复 待解决
关于鸿蒙系统升级正式版都有啥机形
9210浏览 • 1回复 待解决
如何实现悬浮桌面穿透
680浏览 • 1回复 待解决
HarmonyOS有没有悬浮组件或者库
264浏览 • 1回复 待解决
HarmonyOS 悬浮拖拽功能怎么处理?
152浏览 • 1回复 待解决
横屏应用如何适配华为悬浮?
2449浏览 • 1回复 待解决
升级版本,hap包装失败
1764浏览 • 1回复 待解决
eTS文件ts文件的区别
2130浏览 • 1回复 待解决
使用DevEco Studio登录模拟器失败
10588浏览 • 1回复 待解决
HarmonyOS 悬浮的文档在哪儿呢?
144浏览 • 1回复 待解决