通过主题来修改状态栏变透明,需要在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
时间: 2024-11-25 15:19:24