#鸿蒙通关秘籍#如何在鸿蒙应用中隐藏导航条实现沉浸式效果?

HarmonyOS
2天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
CTP梦翼

开发者可以通过从底部上滑唤出导航条,但默认情况下隐藏导航条,以达到沉浸式效果。调用setWindowLayoutFullScreen()设置窗口为全屏显示,并使用setSpecificSystemBarEnabled()方法设置导航条隐藏。

typescript import { window } from '@kit.ArkUI';

let windowClass: window.Window = windowStage.getMainWindowSync(); windowClass.setWindowLayoutFullScreen(true) .then(() => { return windowClass.setSpecificSystemBarEnabled('status', false); }) .then(() => { console.info('导航条已成功隐藏'); }) .catch((err: BusinessError) => { console.error(导航条隐藏失败:${err.message}); });

分享
微博
QQ
微信
回复
2天前
相关问题
HarmonyOS 底部导航条沉浸方案
267浏览 • 1回复 待解决