Android 状态栏透明

来源:互联网 发布:学霸通软件下载 编辑:程序博客网 时间:2024/04/30 08:26
if(VERSION.SDK_INT >= VERSION_CODES.KITKAT) {                                //透明状态栏                                         getWindow().addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);                                //透明导航栏                                getWindow().addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION); }或:<style name="AppBaseTheme" parent="android:Theme.Holo.Light.DarkActionBar">       <!-- API 19 theme customizations can go here. -->        <item name="android:windowTranslucentStatus">true</item>        <item name="android:windowTranslucentNavigation">true</item></style>

0 0
原创粉丝点击