如何将pdf文件保存在android外部存储的默认Documents文件夹中?
我尝试过:
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);
Run Code Online (Sandbox Code Playgroud)
但这会打开另一个带有保存选项的文档提供程序活动。我希望通过单击我的应用程序将 pdf 文件直接保存到文档文件夹中。
android ×1