This commit is contained in:
leafwai
2022-04-29 18:16:02 +08:00
parent ca55ac02b7
commit 4932fc2d7b
102 changed files with 1272 additions and 234 deletions

View File

@ -530,4 +530,11 @@ public class MessageDetailFragment extends NormalFragment implements OnCommentCa
return false;
}
@Override
protected void onNightModeChange() {
super.onNightModeChange();
if (adapter != null) {
adapter.notifyItemRangeChanged(0, adapter.getItemCount());
}
}
}