I want to choose only word, pdf and txt file from storage by using Intent.ACTION_GET_CONTENT
. But intent.setType
with multiple option is not working (Tried this in android 5.1.1 device and even pdf files are greyed out and cannot select).
intent.setType("application/msword|text/plain|application/pdf");
Is it possible to get all three file types by using just intent.setType()?
Even tried this with Intent.EXTRA_MIME_TYPES.
intent.setType("*/*");
intent.putExtra(Intent.EXTRA_MIME_TYPES, mimetypes);
Even though EXTRA_MIME_TYPES
work and allows to select PDF,word files only and doesnt allow to select other types, it lists the "Gallery" option in menu and allows images/videos to be selected from there(I cannot select image from internal storage). So how can I disable this gallery option (Gallery option is not displayed when I just use intent.setType()
)?