Images in RecyclerView

后端 未结 3 1956
执念已碎
执念已碎 2020-12-23 12:39

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

3条回答
  •  感情败类
    2020-12-23 13:37

    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.

提交回复
热议问题