how to show Image Preview In ShareSheet in android while sharing both image and text In intent

813 Views Asked by At

currently in preview its showing text,but i want image to be shown in preview instead of text

  val bitmapUri = Uri.parse(path)
    val intent = Intent(Intent.ACTION_SEND_MULTIPLE)
    val share = Intent.createChooser(Intent().apply {
        intent.type = "image/*"
        action = Intent.ACTION_SEND_MULTIPLE
        putExtra(
            Intent.EXTRA_TEXT,
            "NcQAvD_BwE"
        )

       // to share image URL
        putExtra(Intent.EXTRA_STREAM, bitmapUri)

       
    }, null)
    startActivity(share)
0

There are 0 best solutions below