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

前端 未结 7 2084
情话喂你
情话喂你 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:21

    intent.setType("image/*|application/pdf|audio/*");
    

    Maybe this is what you want.

提交回复
热议问题