I am using RecyclerView in Android and I am having some trouble with images.
I would like to display a list of the images in a particular folder with their path name
You're loading your images on UI thread, that's the problem. Loading file from disk or network takes some time. You can achieve the same, but using Picasso library. Please refer here.