Glide에 대한 기능을 자주 사용하는데, 매번 찾기도 그래서 아예 블로그로 옮겨옴 ^^ SetupAdd to your app/build.gradle file:dependencies { compile 'com.github.bumptech.glide:glide:3.8.0' }Basic UsageGlide.with(context) .load("http://via.placeholder.com/300.png") .into(ivImg);Advanced UsageResizing images with:Glide.with(context) .load("http://via.placeholder.com/300.png") .override(300, 200) .into(ivImg);Placeholder and error ima..