user8412632
user8412632

Reputation:

setType of Intent which does not include images and videos but everything else

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

Answers (2)

AskNilesh
AskNilesh

Reputation: 69689

try this you can specify your intent.setType like this

intent.setType("application/x-excel|application/pdf|text/plain");

Upvotes: 1

Vishal Vaishnav
Vishal Vaishnav

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

Related Questions