我试图将我的应用程序图像打开到另一个应用程序
我在我的android应用程序中有图像uri,我想直接与kotlin一起打开android adobe lightroom应用程序。
发布于 2022-11-06 11:22:16
我解决了我的要求
下面是代码:
val shareIntent = Intent(Intent.ACTION_SEND).apply {
putExtra(Intent.EXTRA_STREAM, uri)
setPackage("com.adobe.lrmobile")
type = "image/jpeg"
}
startActivity(shareIntent)https://stackoverflow.com/questions/74334060
复制相似问题