I am using FragmentStatePagerAdapter to show around 5 fragments in an activity.On each activity I am showing the images which I am fetching from FirebaseListAdapter/Firebase
Add Below Code on Activity on which RecyclerView is present
public static Context context;
Then in onCreate
of the same Activity on which RecyclerView is present add below Code
context = getApplicationContext();
then take reference to glide as shown below
Glide.with(YourActivity.context).load("Image Link").into(holder.YourImageView);