Skip to content

Instantly share code, notes, and snippets.

@atsushisakai-gh
Last active May 23, 2018 15:05
Show Gist options
  • Save atsushisakai-gh/6e87244f3a797f70ddcb98aa42051362 to your computer and use it in GitHub Desktop.
Save atsushisakai-gh/6e87244f3a797f70ddcb98aa42051362 to your computer and use it in GitHub Desktop.
// onlyRetrieveFromCache
// trueを指定することで、URLにアクセスすることなくキャッシュからのみ画像を取得することが可能
GlideApp.with(fragment)
.load(url)
.onlyRetrieveFromCache(true)
.into(imageView);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment