Recycle avatars

pull/178/head
M66B 5 years ago
parent 157cf110be
commit bd952eafad

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

Loading…
Cancel
Save