码迷,mamicode.com
首页 > 其他好文 > 详细

状态栏透明

时间:2017-09-06 14:41:27      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:通过   pre   owa   roi   style   app   log   状态栏   status   

通过主题来修改状态栏变透明,需要在values、values-v19、values-v21目录下分别创建相应的主题。

//values
<style name="TranslucentTheme" parent="AppTheme">
</style>

//values-v19
<style name="TranslucentTheme" parent="Theme.AppCompat.Light.NoActionBar">
        <item name="android:windowTranslucentStatus">true</item>
        <item name="android:windowTranslucentNavigation">false</item>
</style>

//values-v21
<style name="TranslucentTheme" parent="Theme.AppCompat.Light.NoActionBar">
        <item name="android:windowTranslucentStatus">true</item>
        <item name="android:windowTranslucentNavigation">false</item>
        <item name="android:statusBarColor">@android:color/transparent</item>
</style>

 

   <style name="Theme.AppCompat.Light.NoActionBar">
        <item name="windowActionBar">false</item>
        <item name="windowNoTitle">true</item>
    </style>

 

http://www.jianshu.com/p/bae25b5eb867

 

状态栏透明

标签:通过   pre   owa   roi   style   app   log   状态栏   status   

原文地址:http://www.cnblogs.com/huyang011/p/7484077.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!