首页 > 解决方案 > ionic statusbar.styleDefault() 不适用于 andorid

问题描述

我想在我的白色主题中有一个带有黑色字体的白色状态栏。问题是styleDefault()为它制作的方法不起作用。但是这个错误只发生在 iOS 上的 Android 上,它运行良好。有什么方法可以将状态栏上的字体颜色更改为黑色(仅适用于 android)或使用 css 更改它?或者我怎样才能让styleDefault()(深色文本,浅色背景)再次工作?

这是我的代码:

private setStatusBarStyle(darkTheme: boolean) {
   if (darkTheme) {
     this.statusBar.styleLightContent();
   } else {
     this.statusBar.styleDefault();
   }
}

标签: ionic-frameworkstatusbarandroid-statusbar

解决方案


推荐阅读