We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can we set mime type to allow user to select PDF or image like that.???
The text was updated successfully, but these errors were encountered:
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);
Sorry, something went wrong.
No branches or pull requests
Can we set mime type to allow user to select PDF or image like that.???
The text was updated successfully, but these errors were encountered: