damnit, glide.

fixes #2957
// FREEBIE
This commit is contained in:
Jake McGinty 2015-09-04 12:47:48 -07:00
parent aaf3d6a7c7
commit 103686f89b

View File

@ -93,6 +93,7 @@ public class BitmapUtil {
return Glide.with(context) return Glide.with(context)
.load(model) .load(model)
.asBitmap() .asBitmap()
.fitCenter()
.skipMemoryCache(true) .skipMemoryCache(true)
.into(width, height) .into(width, height)
.get(); .get();