Created
April 22, 2014 19:51
-
-
Save wlaurance/11192095 to your computer and use it in GitHub Desktop.
Take that 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
| public String buildImageURL(String path) { | |
| return | |
| new Uri.Builder() | |
| .scheme(scheme) | |
| .authority(hostname) | |
| .appendEncodedPath(base) | |
| .appendEncodedPath(path) | |
| .build().toString(); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment