Created
March 16, 2018 14:50
-
-
Save jonathanpeppers/21737cdd54bd963efe7446c1f6ec3326 to your computer and use it in GitHub Desktop.
Example using Glide in Java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
GlideApp | |
.with(myFragment) | |
.load(url) | |
.centerCrop() | |
.placeholder(R.drawable.loading_spinner) | |
.into(myImageView); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment