The high-quality image also takes to download(from firebase) and display, also make feed slow and laggy once we scroll and the image is out of screen then feed gets back to normal https://pastebin.com/ibcaGzVH This has code on how I upload the image and selection of it
This is how I fetch display the image in feed:
public void setPimage(Context ctx, String pimage) {
ImageView popic = mView.findViewById(R.id.imgView_postpic);
if (pimage != "noImage") {
popic.setVisibility(View.VISIBLE);
Picasso.with(ctx).load(pimage).into(popic);
}
}
Any way to remove that slowness due to image and make retrieving of image faster?