1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2024-12-28 18:59:01 +00:00

Recycle avatars

This commit is contained in:
M66B 2020-04-24 08:00:17 +02:00
parent 157cf110be
commit bd952eafad

View file

@ -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;
}