IONIC - 我在更改离子应用程序的背景时做错了,它被移动设备接管了

IONIC - I'm doing something wrong to change the background on an ionic app and it's taken over by the mobile

我需要做什么才能使 phone 成为我的 Ionic 应用程序的背景?它始终显示为黑色。

更改您的 statusBar 设置。

app.component.ts 中您可以使用以下值:

  • StatusBar.styleDefault
  • StatusBar.styleLightContent
  • StatusBar.styleBlackTranslucent
  • StatusBar.styleBlackOpaque

例如:

 initializeApp() {
    this.platform.ready().then(() => {
      //this.statusBar.styleDefault();
      this.statusBar.styleBlackTranslucent();
      this.splashScreen.hide();
 ...

您可以在 https://github.com/apache/cordova-plugin-statusbar

找到其他选项