Android Kotlin to choose Mutiple pdf file using In

2020-05-06 10:24发布

问题:

am bale to choose only single pdf not able to select mutiple pdf

enter the code

val intent = Intent()
intent.type = "application/pdf"
intent.action = Intent.ACTION_GET_CONTENT
intent.flags = FLAG_GRANT_READ_URI_PERMISSION
intent.putExtra(Intent.EXTRA_ALLOW_MULTIPLE, true)
startActivityForResult(Intent.createChooser(intent, "Select PDF"),pdf)