使用单一意图选择图像和Pdf

时间:2016-04-19 07:16:32

标签: android

我知道我们可以使用以下

  1. 选择图片: intent.setType(" image / *");
  2. 选择PDF文件: intent.setType(" application / pdf");
  3. 那么我们有什么方法可以通过单一意图选择任何单个实体pdf或图像?

2 个答案:

答案 0 :(得分:13)

这里只是一个例子:

private Intent getFileChooserIntent() {
    String[] mimeTypes = {"image/*", "application/pdf"};

    Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
    intent.addCategory(Intent.CATEGORY_OPENABLE);

    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
        intent.setType(mimeTypes.length == 1 ? mimeTypes[0] : "*/*");
        if (mimeTypes.length > 0) {
            intent.putExtra(Intent.EXTRA_MIME_TYPES, mimeTypes);
        }
    } else {
        String mimeTypesStr = "";

        for (String mimeType : mimeTypes) {
            mimeTypesStr += mimeType + "|";
        }

        intent.setType(mimeTypesStr.substring(0, mimeTypesStr.length() - 1));
    }

    return intent;
}

答案 1 :(得分:0)

在我的情况下,上面的答案不起作用,经过一个小时的反复试验,这是我的可行解决方案:

fun getFileChooserIntentForImageAndPdf(): Intent {
        val mimeTypes = arrayOf("image/*", "application/pdf")
        val intent = Intent(Intent.ACTION_GET_CONTENT)
                .setType("image/*|application/pdf")
                .putExtra(Intent.EXTRA_MIME_TYPES, mimeTypes)
        return intent
    }

希望可以帮助某人。