LoginSignup
2
2

More than 5 years have passed since last update.

Androidで複数の画像を選択する方法

Posted at

自前で作る必要があるのかと思ったら、intentにわたす値で指定することができた。

        val intent = Intent(Intent.ACTION_PICK, MediaStore.Images.Media.EXTERNAL_CONTENT_URI)
        intent.putExtra(Intent.EXTRA_ALLOW_MULTIPLE, true)
        intent.putExtra(Intent.EXTRA_MIME_TYPES, arrayOf("image/jpeg","image/png"))
        activity?.startActivityForResult(intent, requestCode)
2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2