Reputation:
I want to search user's phone for files so i am using intent.setType
. I am little confused. I don't want to search for video and images,but i want to search for all other files like pdf
,text,docx
etc.What should i write in intent,setType("");
Upvotes: 2
Views: 259
Reputation: 69689
try this you can specify your intent.setType
like this
intent.setType("application/x-excel|application/pdf|text/plain");
Upvotes: 1
Reputation: 3422
Try below code;
Intent intent = new Intent();
intent.setType("*/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent,"Choose File to Upload.."),PICK_FILE_REQUEST);
Upvotes: 2