Multiple MIME types in Android

后端 未结 6 2031
走了就别回头了
走了就别回头了 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:16

    for my work with semicolons.

    Example:

    intent.setType("image/*;video/*")
    

    or

    sIntent.putExtra("CONTENT_TYPE", "image/*;video/*"); 
    

提交回复
热议问题