我想在帖子在 Whatsapp、Facebook 等上成功分享后调用 API。下面是我用来启动应用程序的代码。
Val intent = Intent(Intent.ACTION_SEND)
intent.type = "image/*"
intent.putExtra(Intent.EXTRA_STREAM, imagePath)
intent.putExtra(Intent.EXTRA_TEXT,message)
activity?.startActivityForResult(Intent.createChooser(intent, "Share"),100)