fix:【夜间模式】UI测试调整问题汇总(7月第1周)https://git.shanqu.cc/pm/halo/halo-app-issues/-/issues/1957

This commit is contained in:
leafwai
2022-07-06 09:31:07 +08:00
parent 850b80688a
commit 89c2a58914
122 changed files with 264 additions and 261 deletions

View File

@ -26,12 +26,12 @@ public class MessageInviteActivity extends ToolBarActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
ExtensionsKt.updateStatusBarColor(this, R.color.text_292929, R.color.white);
ExtensionsKt.updateStatusBarColor(this, R.color.background_white, R.color.background_white);
}
@Override
protected void onNightModeChange() {
super.onNightModeChange();
ExtensionsKt.updateStatusBarColor(this, R.color.text_292929, R.color.white);
ExtensionsKt.updateStatusBarColor(this, R.color.background_white, R.color.background_white);
}
}