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

Posted helloblogs

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SystemBarTint是两年以前的一个开源库,现在我们依然可以用它很方便的给应用加上。相关的知识,希望对你有一定的参考价值。

// 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是两年以前的一个开源库,现在我们依然可以用它很方便的给应用加上。的主要内容,如果未能解决你的问题,请参考以下文章

真的,一般人别碰开源项目!开源的“苦涩指南”

阿里NACOS配置中心学习总结

沉浸式状态栏框架-SystemBarTint

沉浸式状态栏框架-SystemBarTint

实用代码,批量下载手机壁纸!

Xcode8 重新配置 CocoaPods -替换阿里源