Skip to content

Instantly share code, notes, and snippets.

@vxhviet
Created April 7, 2016 10:23
Show Gist options
  • Save vxhviet/31b82e3f35a56bacd9e00c7cca3114a2 to your computer and use it in GitHub Desktop.
Save vxhviet/31b82e3f35a56bacd9e00c7cca3114a2 to your computer and use it in GitHub Desktop.
Uri parse

Question: To convert a path to Uri

Answer:

To avoid nasty bug:

  • for file use Uri.fromFile(new File(filePath))

  • for directory use Uri.parse(directoryPath)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment