码迷,mamicode.com
首页 > 移动开发 > 详细

让Android支持透明状态栏

时间:2015-07-14 17:40:49      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:

<style name="Theme.Timetodo" parent="@android:style/Theme.Holo.Light">
    <!-- translucent system bars -->
    <item name="android:windowTranslucentStatus">true</item>
    <item name="android:windowTranslucentNavigation">true</item>
</style>

可以在代码中动态设置:

private void initSystemBar() {
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
        setTranslucentStatus(true);
        SystemBarTintManager tintManager = new SystemBarTintManager(this);
        tintManager.setStatusBarTintEnabled(true);
        tintManager.setStatusBarTintResource(R.color.actionbar_bg);
        SystemBarConfig config = tintManager.getConfig();
        listViewDrawer.setPadding(0, config.getPixelInsetTop(true), 0, config.getPixelInsetBottom());
    }
}

技术分享

 

参考自:http://segmentfault.com/a/1190000000403651

让Android支持透明状态栏

标签:

原文地址:http://www.cnblogs.com/tianzhijiexian/p/4645563.html

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