Ionic 4状态栏完全透明

问题描述 投票:1回答:1

我正在尝试使我的应用状态栏在Android上完全透明在MainActivity.java上使用此代码]

    getWindow().getDecorView().setSystemUiVisibility(
       View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN |
       View.SYSTEM_UI_FLAG_LAYOUT_STABLE);

并且在app.commponent上稀疏

this.statusBar.backgroundColorByHexString('#11000000');

但仍不完全透明enter image description here

ionic-framework ionic4
1个回答
0
投票
<ion-content fullscreen> </ion-content>

然后.sass

ion-toolbar {
--background: transparent;
--ion-color-base: transparent !important;
}
© www.soinside.com 2019 - 2024. All rights reserved.