mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-08 18:13:24 +02:00
Recycle avatars
This commit is contained in:
@@ -1263,8 +1263,10 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
||||
if (info[0].hasPhoto()) {
|
||||
ibAvatar.setImageBitmap(info[0].getPhotoBitmap());
|
||||
ibAvatar.setVisibility(View.VISIBLE);
|
||||
} else
|
||||
} else {
|
||||
ibAvatar.setImageDrawable(null);
|
||||
ibAvatar.setVisibility(View.GONE);
|
||||
}
|
||||
|
||||
Uri lookupUri = info[0].getLookupUri();
|
||||
ibAvatar.setTag(lookupUri);
|
||||
@@ -5167,6 +5169,12 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
||||
holder.powner.recreate();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onViewRecycled(@NonNull ViewHolder holder) {
|
||||
if (holder.ibAvatar != null)
|
||||
holder.ibAvatar.setImageDrawable(null);
|
||||
}
|
||||
|
||||
void setSelectionTracker(SelectionTracker<Long> selectionTracker) {
|
||||
this.selectionTracker = selectionTracker;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user