how to make intent.setType for pdf,xlsx and txt file android?

前端 未结 7 2080
情话喂你
情话喂你 2020-12-04 21:48

I want to choose only pdf, xlsx and txt file from storage but intent.setType can do only one file(eg.txt file only (or) pdf file only). Is it possible to get all three files

7条回答
  •  死守一世寂寞
    2020-12-04 22:19

    The simple solution is

       Intent gallery=new Intent();
            gallery.setType("application/*");
            gallery.setAction(Intent.ACTION_GET_CONTENT);
            startActivityForResult(gallery,pick);
    

    Note: pick is int variable.

提交回复
热议问题