1

我正在尝试浏览android中的所有文件和文档,如下所示

然后选择这样的文档:

然后像这样选择其他应用程序文档:

我试过这段代码:

Intent intent = new Intent();
    intent.setType("application/pdf");
    intent.setAction(Intent.ACTION_GET_CONTENT);
    startActivityForResult(Intent.createChooser(intent, "Select PDF"), 1);

结果是这样的:

我不知道该怎么办

4

0 回答 0