Android - ShareActionProvider Share Menu add particular option
问题 This is what I have: val imgURL = "https://blaaaa.com/pic.jpg" val shareIntent = Intent() shareIntent.action = Intent.ACTION_SEND shareIntent.type = "text/plain" shareIntent.putExtra( Intent.EXTRA_TEXT, context.getString(R.string.check_this_out) + " " + domain + "/post/?id=" + meme.id ) context.startActivity( Intent.createChooser( shareIntent, context.getString(R.string.send_to) ) ) This way I'm sending a text to any available app in the share menu. But I need to add one PARTICULAR option