I have a pdf in the app's internal storage, however, I cannot open the file in the system pdf app.
val pdfDirPath = File(context.filesDir, "pdfs")
val file: File = File(pdfDirPath, "title.pdf")
val uri = Uri.fromFile(file)
val intent = Intent(Intent.ACTION_VIEW)
intent.setDataAndType(uri, "application/pdf");
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(intent);
it shows the error "cannot display pdf"
Try this
Uri pdfUri = FileProvider.getUriForFile(getContext(), getContext().getApplicationContext().getPackageName() + ".provider", file);
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(pdfUri, "application/pdf");
intent.addFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION)
Related
Uri uri = Uri.fromFile(file); Intent intent = new
Intent(Intent.ACTION_VIEW);
if (file.toString().contains(".doc") ||
file.toString().contains(".docx")) {
intent.setDataAndType(uri, "application/msword");
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
activity.startActivity(intent); }
File file = new File(Environment.getExternalStorageDirectory().getPath() + "/Download/NSuresh.docx" ); uri = FileProvider.getUriForFile(context, context.getApplicationContext().getPackageName() + ".provider", file); Intent intent = new Intent(Intent.ACTION_VIEW); intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); intent.setDataAndType(uri, "application/msword"); startActivity(intent);
I appreciate your help so that my code can open a PDF file with an Intent, this is the code i have been using:
String pathFile =
Environment.getExternalStorageDirectory().toString() +
FileUtils.PATH_SEPARATOR + "myFolder" +
FileUtils.PATH_SEPARATOR + "myFile.pdf";
File pdfFile = new File( pathFile );
if ( pdfFile.exists() ) {
Uri uri = Uri.fromFile( new File( pathFile ) );
Intent intent = new Intent( Intent.ACTION_VIEW );
intent.setDataAndType(uri, "application/pdf");
intent.addFlags( Intent.FLAG_ACTIVITY_NEW_TASK );
startActivity( intent );
}
But I understand that now (from the Android-N version) the privileges are handled differently and so i hope you can help me by indicating what changes i have to make to get a PDF file opened using an Intent.
PS: In my AndroidManifest.xml I am looking for all permissions in the STORAGE:
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
The answer was found at: http://android.2317887.n4.nabble.com/FileProvider-td394588.html
Terrific!.
Try this code.
Intent intent = new Intent(Intent.ACTION_VIEW);
try {
String newFilePath = filePath.replaceAll("%20", " ");
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.N) {
intent.setDataAndType(Uri.parse(newFilePath), "application/pdf");
} else {
Uri uri = Uri.parse(newFilePath);
File file = new File(uri.getPath());
if (file.exists()){
uri = FileProvider.getUriForFile(context, context.getPackageName() + ".provider", file);
intent.setDataAndType(uri, "application/pdf");
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
}
}
intent.addFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
startActivity(intent);
I want to open specific path folder using Intent, I used code for File explorer and It working perfectly but in some device (samsung devices) if file explorer app are not available then It not opening folder of specific path.
I tried many solutions but It won't work for me.
Uri uri = Uri.fromFile(new File(new File(filePath).getParent()));
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(uri, "resource/folder");
if (intent.resolveActivityInfo(getPackageManager(), 0) != null)
{
startActivity(intent);
}
else {
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setDataAndType(uri, "file/*");
startActivity(Intent.createChooser(intent, "Open folder"));
}
Here is my solution for accessing "root/Downloads/Sam" in Kotlin
val rootPath = "content://com.android.externalstorage.documents/document/primary:"
val samPath = Uri.parse("$rootPath${Environment.DIRECTORY_DOWNLOADS}%2fSam") //"%2f" represents "/"
val REQUEST_CODE_PICK_FILE = 1
main_sam_button.setOnClickListener {
val intent = Intent(Intent.ACTION_GET_CONTENT)
intent.type = "text/plain" //specify file type
intent.putExtra(DocumentsContract.EXTRA_INITIAL_URI, samPath) //set the default folder
startActivityForResult(intent, REQUEST_CODE_PICK_FILE)
}
Demo:
https://youtu.be/lUIPyC_8q_M
Helpful reading:
"content://com.android.externalstorage.documents/document/primary:":
What is com.android.externalstorage?
val intent = Intent(Intent.ACTION_GET_CONTENT)
intent.setDataAndType(
Uri.parse(
(Environment.getExternalStorageDirectory().path
+ java.io.File.separator) + "myFile" + java.io.File.separator
), "*/*"
)
intent.addFlags(
Intent.FLAG_GRANT_READ_URI_PERMISSION
and Intent.FLAG_GRANT_WRITE_URI_PERMISSION
and Intent.FLAG_GRANT_PERSISTABLE_URI_PERMISSION
and Intent.FLAG_GRANT_PREFIX_URI_PERMISSION
)
intent.addCategory(Intent.CATEGORY_OPENABLE)
startActivityForResult(intent, WRITE_ACCESS_CODE)
What is the code to open the folder, /storge/sdcar0/0students/ to be like a screen in the picture below
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
Uri uri = Uri.parse(Environment.getExternalStorageDirectory().getPath()
+ "/0students/");
intent.setDataAndType(uri, "*/*");
startActivity(Intent.createChooser(intent, "Open folder"));
I have used this code, but is not required
enter link description here
To open the directory 0students, try this.
Uri uri = Uri.parse(Environment.getExternalStorageDirectory() + "/0students/");
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(uri, "resource/folder");
if (intent.resolveActivity(getPackageManager()) != null){
startActivity(intent);
}