Multiple MIME types in Android

后端 未结 6 2036
走了就别回头了
走了就别回头了 2020-12-01 00:42

Is there a way to use intent.setType() and supply multiple broad types (like images and video)?

I am using an ACTION_GET_CONTENT.

6条回答
  •  借酒劲吻你
    2020-12-01 01:10

    you can pass multiple mime types if you separate with |

    Intent.setType("application/*|text/*");
    

提交回复
热议问题