状态栏时间显示的问题

无意中发现状态栏中有时有时间显示,有时却没有时间显示,如下图

左上角有时间显示


左上角没有时间显示


代码区别是使用两种不同的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>
这里有一行专门用来隐藏标题栏的设置,但不知为什么状态栏没有了时间显示。



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值