Pablo is simple and easy to use image loading library for android
Add it in your root build.gradle at the end of repositories:
allprojects {
repositories {
maven { url 'https://jitpack.io' }
}
}
Add the gradle dependency to your app
module build.gradle
file:
dependencies {
implementation 'com.github.ajithvgiri:pablo:v0.0.1'
}
Pablo pablo = new Pablo(context);
pablo.setCompress(false); // default value is true
pablo.displayImage("imageUrl", imageView)
val pablo = Pablo(context)
pablo.isCompress = false
pablo.displayImage(imageUrl, fullscreen_imageView)