问题描述
当我更改主要活动时,我开始在开始活动时看到这条奇怪的线,我如何才能在屏幕顶部显示通常的日期时间、击球手以及您希望看到的所有内容?
解决方法
您可以使用主题设置状态栏颜色。
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light">
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorSecondary</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="android:statusBarColor">@color/colorPrimary</item>
</style>
</resources>
请在 xml 文件中检查您的主题。
,我犯了一个愚蠢的错误并在清单中添加了 noactionbar 的属性