Invalidate item decorators

This commit is contained in:
M66B 2021-10-14 13:26:56 +02:00
parent a3c2ce6912
commit 61c004d510
1 changed files with 11 additions and 1 deletions

View File

@ -6473,7 +6473,17 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
if (rv != null)
savedState = rv.getLayoutManager().onSaveInstanceState();
differ.submitList(list);
differ.submitList(list, new Runnable() {
@Override
public void run() {
try {
if (rv != null)
rv.invalidateItemDecorations();
} catch (Throwable ex) {
Log.e(ex);
}
}
});
}
PagedList<TupleMessageEx> getCurrentList() {