Intent.ACTION_GET_CONTENT打开图片和pdf

and*_*dro 2 android android-intent

我正在尝试打开最近的窗口,其中只有图像和pdf可选

Intent intent = new Intent();
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent, "Select Picture"), PICK_IMAGE_REQUEST);
Run Code Online (Sandbox Code Playgroud)

但在这我只能选择图像如何我也可以添加PDF

Poo*_*oya 9

您可以使用EXTRA_MIME_TYPES(来自API 19)执行以下操作:

final String[] ACCEPT_MIME_TYPES = {
        "application/pdf",
        "image/*"
  };
Intent intent = new Intent();
intent.setType("*/*");
intent.setAction(Intent.ACTION_GET_CONTENT); 
intent.putExtra(Intent.EXTRA_MIME_TYPES, ACCEPT_MIME_TYPES);
startActivityForResult(Intent.createChooser(intent, "Select Picture"), PICK_IMAGE_REQUEST);
Run Code Online (Sandbox Code Playgroud)

UPDATE

还有另一种解决方案,但它可能会或可能不会根据用户体验工作,但您可以尝试查看它是否适用于您的情况:

intent.setType("image/*,application/pdf");
Run Code Online (Sandbox Code Playgroud)

但是,您尝试调用的应用程序也应该支持MIME类型