How to load and cache images from URL to RecyclerView without using 3rd party libraries in Android
What is the goal? In the last post, I demonstrated how to create a RecyclerView and load data from the external API, particularly we used the Picasso library to load and cache images for us. In this post, I will show how to manually do that without the use of any libraries. To not repeat myself, in this article I will just post the code for newly added classes and code where changes were made, the rest of the code is the same as previous post....