如何在 Ionic 2 中使状态栏颜色可变

Ali*_*i H 3 header colors statusbar ionic2

我看到很多由 ionic 2 开发的应用程序支持状态栏颜色和标题相同的颜色,但我无法在我的应用程序中做到这一点

此图像显示了我将其构建为 apk 并安装在我的 android 手机上时的状态栏

在此处输入图片说明

但我想这样做(如果可能的话)

在此处输入图片说明

Col*_*rus 5

你可以参考这个文档:https : //ionicframework.com/docs/native/status-bar/

要更改颜色,您可以尝试在app.component.ts 上,在您的构造函数中:

(假设你已经注入statusBar: StatusBar了你的 ctor)

this.statusBar.backgroundColorByHexString('#ffffff');
Run Code Online (Sandbox Code Playgroud)

不确定如何像您显示的示例那样减少一点不透明度。也许:

this.statusBar.styleBlackOpaque()
//or
this.statusBar.styleBlackTranslucent()
Run Code Online (Sandbox Code Playgroud)

让我们知道什么对您有用。