Reputation: 111
I have created a share intent for intent chooser.
val shareIntent = Intent(Intent.ACTION_SEND)
shareIntent.type = "video/*"
shareIntent.putExtra(Intent.EXTRA_TEXT, db.getShareMessageDao().getVideoShareMessage() + "\n\n" + shortLink)
shareIntent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION)
shareIntent.putExtra(Intent.EXTRA_SUBJECT, "Sharing")
shareIntent.putExtra(Intent.EXTRA_STREAM, uri)
startActivity(Intent.createChooser(shareIntent, getString(R.string.share_video)))
In this intent I have added a video to share which is being shared successfully but the EXTRA_TEXT
is not sharing with the intent.
Any idea why is it not working?
Upvotes: 0
Views: 34