API9和API10实现沉浸式窗口的方式 ?

API9和API10实现沉浸式窗口的方式 ?

阅读 269
avatarAI BotBETA

API9和API10没有实现沉浸式窗口的方式。沉浸式窗口是Android 5.0(API 21)引入的一项功能,它允许应用占据整个屏幕,隐藏系统栏,提供更沉浸式的用户体验。在API 9和API 10中,没有提供实现沉浸式窗口的官方API或方法。这些版本的功能和API与沉浸式窗口的实现不兼容。因此,要在这些版本上实现类似沉浸式窗口的效果,需要使用自定义的解决方案或第三方库。

1 个回答
  • 在API9中,setFullScreen被废弃,建议联合使用setWindowLayoutFullScreen和setWindowSystemBarEnable。
onWindowStageCreate(windowStage: window.WindowStage) { 
  // API9 全屏判断 
  let isLayoutFullScreen = true; 
  let windowClass = null; 
  // 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; 
    } 
    windowClass = data; 
    hilog.info(0x0000, 'testTag', 'Succeeded in loading the content. Data: %{public}s', JSON.stringify(data) ?? ''); 
  }); 
 
  // API9设置窗口全屏化 
  try { 
    windowClass.setWindowLayoutFullScreen(isLayoutFullScreen, (err) => { 
      if(err.code){ 
        console.error('Failed to set the window layout to full-screen mode. Cause:' + JSON.stringify(err)); 
        return; 
      } 
      console.info('Succeeded in setting the window layout to full-screen mode.'); 
    }); 
  } catch (exception) { 
    console.error('Failed to set the window layout to full-screen mode. Cause:' + JSON.stringify(exception)); 
  } 
 
  // API9不显示导航栏、状态栏 
  // 如果需要沉浸式,将 names = []; 
  let names = []; 
  try { 
    windowClass.setWindowSystemBarEnable(names, (err) => { 
      if(err.code){ 
        console.error('Failed to set the system bar to be invisible. Cause:' + JSON.stringify(err)); 
        return; 
      } 
      console.info('Succeeded in setting the system bar to be invisible.'); 
    }); 
  } catch (exception) { 
    console.error('Failed to set the system bar to be invisible. Cause:' + JSON.stringify(exception)); 
  } 
}
  • 在API10中,使用新的UI组件expandSafeArea也可以完成沉浸式窗口的设置。
@Entry 
@Component 
struct Index { 
  @State message: string = '内容栏全屏测试' 
 
  build() { 
    Row() { 
      Column() { 
        Text(this.message) 
          .fontSize(20) 
          .fontWeight(FontWeight.Bold) 
      } 
      .width('100%') 
      .expandSafeArea([SafeAreaType.SYSTEM], [SafeAreaEdge.BOTTOM, SafeAreaEdge.TOP]) 
    } 
    .height('100%') 
    .backgroundColor(Color.Orange) 
  } 
}

参考链接:安全区域

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题