Android4.4设置状态栏为透明

来源:互联网 发布:windows phone论坛 编辑:程序博客网 时间:2024/04/30 03:15

方法

方法很简单,在AndroidManifest.xml文件里配置Theme。
所以,我就直接贴代码了:

AndroidManifest.xml

android:theme="@style/Theme.Transparent.StatusBar"

styles.xml,styles.xml(v11),styles.xml(v14)

<style name="Theme.Transparent.StatusBar" parent="@android:style/Theme.Light.NoTitleBar">

styles.xml(v19)即Android4.4+

<style name="Theme.Transparent.StatusBar" parent="@android:style/Theme.Light.NoTitleBar">        <item name="android:windowTranslucentStatus">true</item>        <item name="android:windowTranslucentNavigation">true</item>    </style>
2 0