-
Notifications
You must be signed in to change notification settings - Fork 401
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't set signature (Glide) #44
Comments
@DennyWeinberg can you tell how you solved this issue? |
Did not found any no good solution for that. I still use glide with chrisbeans PhotoView. |
You can do something on the GlideImageLoader. |
@Piasy how to do that? I've tried to add in method |
That's all about glide, maybe you can check out its docs. |
Before:
Glide.with(mActivity).load(mediaItem.getUri()) .skipMemoryCache(true) //.asBitmap() //.imageDecoder(new StreamBitmapDecoder(mActivity, DecodeFormat.PREFER_ARGB_8888)) .thumbnail(0.4f) .dontAnimate() .signature(mediaItem.getSignature()) .into(photoView);
after:
photoView.showImage(mediaItem.getUri());
I need to set the signature because I edited my photo and need to reset the glide cache.
The text was updated successfully, but these errors were encountered: