enter image description hereIntent.EXTRA_TITLE not working when I'm trying to send text and image to other apps like WhatsApp
this is the code I'm trying to
Intent sendIntent = new Intent(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TITLE, Heading);
sendIntent.setType("image/*");
sendIntent.putExtra(Intent.EXTRA_STREAM,
Uri.parse("file://" + sharefile));
sendIntent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
startActivity(Intent.createChooser(sendIntent,"Hello"));
when I'm using EXTRA_TEXT it is working fine but for EXTRA_TITLE not working please help me