无意中发现状态栏中有时有时间显示,有时却没有时间显示,如下图
左上角有时间显示
左上角没有时间显示
代码区别是使用两种不同的Theme,有时间显示的那个在AndroidManifest.xml中是这样写的:
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar">
直接使用了Theme.NoTitleBar;而无时间显示的那个在AndroidManifest.xml中是这样写的:
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme">
对应的AppTheme是这样的:
<style name="AppTheme" parent="AppBaseTheme">
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
<!-- 启动时页面为透明色,避免显示空白页,好像有问题,还是空白页 -->
<item name="android:windowIsTranslucent">true</item>
<!-- 这个起作用,启动时有点延时,实际就是加载了透明的背景,如微信6.3.28 -->
<item name="android:windowBackground">@android:color/transparent</item>
<!-- 设置启动背景图片,避免显示空白页,如支付宝9.9.5 -->
<!-- <item name="android:windowBackground">@drawable/splash_bg</item> -->
<!-- 隐藏标题栏 -->
<item name="android:windowNoTitle">true</item>
<item name="android:fitsSystemWindows">true</item>
<!-- 隐藏状态栏 -->
<!-- <item name="android:windowFullscreen">true</item> -->
</style>
这里有一行专门用来隐藏标题栏的设置,但不知为什么状态栏没有了时间显示。