Hey there I only want to load the first 2 items from the Firebase Realtime database to my recycler view but the problem is it returns only 2 images and I want to load the first 2 images out of 'n' no. of image (for ex. return the first 2 images out of 'n' then scrolling down return 2 new images (like that in Instagram) and not download all images offscreen and show it on scrolling). Here is the code but I get only 2 fixed items. Help!
public int getItemCount() {
int size = mClicks.size();
return (size > 2 ? 2 : size);
}