laobie / StatusBarUtil

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

Activity 中onresume 设置状态无效 #262

Open 740638339 opened 5 years ago

740638339 commented 5 years ago

Activity中包含多个fragment,跳转到其他activity,再次返回到fragment,Activity 中onresume 设置状态无效

------ activity onresume ------

//currentPosition 保存 fragment 位置

private void changeStatusBar() { if(currentPosition == 0 || currentPosition == 3 || currentPosition == 4){ StatusBarUtil.setDarkMode(this); }else { StatusBarUtil.setLightMode(this); } }