Skip to content

Instantly share code, notes, and snippets.

@wlaurance
Created April 22, 2014 19:51
Show Gist options
  • Select an option

  • Save wlaurance/11192095 to your computer and use it in GitHub Desktop.

Select an option

Save wlaurance/11192095 to your computer and use it in GitHub Desktop.
Take that java
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