I've got all of the images I need for my app, and I'm trying to speed it up and make it silky smooth, so I have been using Glide to load the images and it works in other areas of my app but not in my viewpager.
In my fragment I'm trying to load my image like so
Glide.with(this).load(R.drawable.my_drawable).into(myImageView);
and nothing happens or appears and I don't get an exception or any sort of error message from Glide.