您的位置:首页 > 移动开发 > Android开发

android 导航栏透明

2016-01-28 20:48 495 查看
    实现类似于天天动听 导航栏透明:

原来主题:

 <style name="AppTheme" parent="AppBaseTheme">

        <!-- All customizations that are NOT specific to a particular API-level can go here. -->

        <item name="android:windowNoTitle">true</item>

    </style>

增加后:

 <style name="AppTheme" parent="AppBaseTheme">

        <!-- All customizations that are NOT specific to a particular API-level can go here. -->

        <item name="android:windowNoTitle">true</item>

        <item name="android:windowTranslucentStatus">true</item>

        <item name="android:windowTranslucentNavigation">true</item>
    </style>

注意点:

      中国有的手机用的是虚拟按键,这样导致该功能在下面按钮会和虚拟按键重叠,,,请注意。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  导航栏透明