How to save pdf files in default Documents folder in external storage of the android?
I have tried with:
Intent intent = new Intent(Intent.ACTION_CREATE_DOCUMENT);
intent.addCategory(Intent.CATEGORY_OPENABLE);
intent.setType("application/pdf");
intent.putExtra(Intent.EXTRA_TITLE, name);
startActivityForResult(intent,PDF_REQUEST_CODE);
But this opens another Document provider activity with save option. I want that the pdf file saves directly into Document folder from a single click on my application.