Guest User

Untitled

a guest
Nov 21st, 2017
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. public static RequestOptions getDiskCacheRequestOptions(){
  2. RequestOptions requestOptions = new RequestOptions();
  3. requestOptions.diskCacheStrategy(DiskCacheStrategy.ALL); //related redline error
  4. return requestOptions;
  5. }
  6.  
  7. Glide.with(this)
  8. .applyDefaultRequestOptions(Utils.getDiskCacheRequestOptions())
  9. .load(mImageUrl))
  10. .into(mImageView);
Add Comment
Please, Sign In to add comment