Wiv
Wiv copied to clipboard
Can we make it use with Glide ?
Can we make it use with Glide ? Can we make it cache images for offline support ?
You can check my forked repo, I modified it to support Glide (since the owner is currently using Picasso so there won't be a pull request for that).
Attention:
You might get an error because of the collapsed between setTag() of Wiv and Glide. To prevent that, in your main app Application file (BaseApplication.java?), add this line in onCreate function:
+ ViewTarget.setTagId(R.id.glide_tag);
where glide_tags is
Let me know if you need more help.
@hnguyenworkstation Thanks. Did'nt understood the setTag() part ?
@debjitk Basically, Glide uses setTag() for each ImageView it loads image to, and also WiV so there will be a collusion because of that.