laobie / StatusBarUtil

A util for setting status bar style on Android App.
http://t.cn/Rq746Kb
Apache License 2.0
8.82k stars 1.72k forks source link

修改了Demo中的代码后 statusBar设置白色有BUG #260

Closed BingoKingCoding closed 5 years ago

BingoKingCoding commented 5 years ago

修改作者Demo中的ColorStatusBarActivity类 #setStatusBar为如下代码

mColor = getResources().getColor(R.color.white); StatusBarUtil.setColor(this, mColor); StatusBarUtil.setLightMode(this);

发现标题栏上移了

BingoKingCoding commented 5 years ago

系统 小米5s 安卓8.0

BingoKingCoding commented 5 years ago

添加了 #253 中的方法就没问题了

BingoKingCoding commented 5 years ago

要先调用StatusBarUtil.setLightMode(this);再调用StatusBarUtil.setColor(this, mColor);