How to Share Image + Text together using ACTION_SEND in android?
You can share plain text with the following code String shareBody = “Here is the share content body”; Intent sharingIntent = new Intent(android.content.Intent.ACTION_SEND); sharingIntent.setType(“text/plain”); sharingIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, “Subject Here”); sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, shareBody); startActivity(Intent.createChooser(sharingIntent, getResources().getString(R.string.share_using))); So your full code (your image + text) becomes private Uri imageUri; private Intent intent; imageUri = Uri.parse(“android.resource://” + getPackageName() + “/drawable/” + “ic_launcher”); … Read more