TedBottomPicker icon indicating copy to clipboard operation
TedBottomPicker copied to clipboard

Mime type

Open MustafaDev-shaikh opened this issue 4 years ago • 1 comments

Can we set mime type to allow user to select PDF or image like that.???

MustafaDev-shaikh avatar Sep 28 '20 12:09 MustafaDev-shaikh

Yes you can use that code to support multiple mime types

example for pdf and image files

String[] mimeTypes = {"image/","application/pdf"}; Intent galleryIntent = new Intent(Intent.ACTION_GET_CONTENT, MediaStore.Images.Media.EXTERNAL_CONTENT_URI) .setType("image/|application/pdf") .addCategory(Intent.CATEGORY_OPENABLE) .putExtra(Intent.EXTRA_MIME_TYPES, mimeTypes);

Dipak26 avatar Mar 01 '21 10:03 Dipak26