如何从手机中挑选图像并将其显示在Android应用程序之外的应用程序中?

How to pick image from phone and display it in app outside the android app?

提问人:Adzhiew 提问时间:11/11/2023 更新时间:11/11/2023 访问量:18

问:

我想从设备中选取图像,然后在图库应用程序或其他应用程序中显示它

我只能打开图库来挑选图像。

private val imageLauncher= registerForActivityResult(ActivityResultContracts.StartActivityForResult()) {
        imageUri = it.data?.data!!
    }

        btnChooseImage.setOnClickListener {
            val intent = Intent(Intent.ACTION_PICK, MediaStore.Images.Media.EXTERNAL_CONTENT_URI)
            imageLauncher.launch(intent)
        }

我想我没有在imageUri中存储任何东西

镜像 Kotlin Android-intent

评论

1赞 CommonsWare 11/11/2023
使用 和 您收到的开始活动。ACTION_VIEWUri

答: 暂无答案