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)
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)