Fix first gallery image not loading.

This commit is contained in:
Docile-Alligator
2026-06-13 22:53:40 -04:00
parent 363c0d4b02
commit fd78ab2aff

View File

@ -93,8 +93,10 @@ public class PostGalleryTypeImageRecyclerViewAdapter extends RecyclerView.Adapte
holder.binding.imageViewItemGalleryImageInPostFeed.addOnLayoutChangeListener(new View.OnLayoutChangeListener() {
@Override
public void onLayoutChange(View v, int left, int top, int right, int bottom, int oldLeft, int oldTop, int oldRight, int oldBottom) {
holder.binding.imageViewItemGalleryImageInPostFeed.removeOnLayoutChangeListener(this);
loadImage(holder);
v.removeOnLayoutChangeListener(this);
v.post(() -> {
loadImage(holder);
});
}
});