Caching images in android is key for performance issues. We can write our own AsyncTask to manage it well or use Picasso with one-line of code:
1 |
Picasso.with(context).load(path).into(imageView); |
When we develop our app in Kotlin we can make it smarter using Extension Properties.