Joel Page
Joel Page
Same problem here. Also tried binding transformations to a List object and putting it before the source.
For all who are having this issue, Glide crops the loaded image to the size of the image view. If this happens it cannot scroll. You can fix this by...
Yeah. Here is my code for loading the information on the notification: `Glide.with(this) .asBitmap() .error(requestBuilder) .load(book.getCover()) .into(new SimpleTarget() { @Override public void onResourceReady(Bitmap largeIcon, Transition transition) { Cat.d("Finished loading"); cover...
I am using a url with glide: https://s-media-cache-ak0.pinimg.com/originals/56/31/bd/5631bda81f2d499283a288106f1b0dff.jpg. The app lets you pick an image from online and loads it from there.