首页 > 其他 > 详细

SystemBarTint是两年以前的一个开源库,现在我们依然可以用它很方便的给应用加上。

时间:2016-05-19 21:24:01      阅读:257      评论:0      收藏:0      [点我收藏+]
// 4.4及以上版本开启
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
            setTranslucentStatus(true);
        }

        SystemBarTintManager tintManager = new SystemBarTintManager(this);
        tintManager.setStatusBarTintEnabled(true);
        tintManager.setNavigationBarTintEnabled(true);

        // 自定义颜色
        tintManager.setTintColor(Color.parseColor("#24b7a4"));

 

SystemBarTint是两年以前的一个开源库,现在我们依然可以用它很方便的给应用加上。

原文:http://www.cnblogs.com/wjhblogs/p/5509939.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!