Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 284 Bytes

README.md

File metadata and controls

14 lines (12 loc) · 284 Bytes

EasyImage

Easy to display image into ImageView on Android.

EasyImage
         .with(activity)
         .load("your url")
         .placeholder(R.drawable.loading)
         .error(R.drawable.error)
         .fadeIn()
         .rounded(20f)
         .into(imageView)