PdfiumAndroid icon indicating copy to clipboard operation
PdfiumAndroid copied to clipboard

How to convert Path to Uri

Open Harish2602 opened this issue 6 years ago • 1 comments

How to convert path to Uri

Harish2602 avatar Jun 08 '18 05:06 Harish2602

for a file Uri

Uri.fromFile(new File(path));

or for a content Uri (read up on FileProviders and configure appropriately)

FileProvider.getUriForFile(context, BuildConfig.APPLICATION_ID, new File(path));

Flamedek avatar Jul 13 '18 10:07 Flamedek