【问题描述】
-
介绍问题现象和发生的背景
设置窗口全屏正常;设置状态栏隐藏和导航条隐藏均返回成功但是实际上还显示,并没有隐藏
-
相关的代码(请勿使用截图)
let windowClass: window.Window = windowStage.getMainWindowSync();
// 1. 设置窗口全屏
let isLayoutFullScreen = true;
windowClass.setWindowLayoutFullScreen(isLayoutFullScreen).then(() => {
console.info('Succeeded in setting the window layout to full-screen mode.');
}).catch((err: BusinessError) => {
console.error(`Failed to set the window layout to full-screen mode. Code is ${err.code}, message is ${err.message}`);
});
// 2. 设置状态栏隐藏
windowClass.setSpecificSystemBarEnabled('status', false, false).then(() => {
console.info('Succeeded in setting the status bar to be invisible.');
}).catch((err: BusinessError) => {
console.error(`Failed to set the status bar to be invisible. Code is ${err.code}, message is ${err.message}`);
});
// 3. 设置导航条隐藏
windowClass.setSpecificSystemBarEnabled('navigationIndicator', false, false).then(() => {
console.info('Succeeded in setting the navigation indicator to be invisible.');
}).catch((err: BusinessError) => {
console.error(`Failed to set the navigation indicator to be invisible. Code is ${err.code}, message is ${err.message}`);
});
【运行环境】
硬件:Purple-Pi-OH
ROM版本:OpenHarmony 5.0.0.71
DevEvoStudio版本:5.0.2
SDK版本:5.0.0.71 |