Hi I want to share a default content plus the text the user wants to share:
Intent sendIntent = new Intent();
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT, " - You're using App v. 10.2");
sendIntent.setType("text/plain");
startActivity(sendIntent);
What I want is like this:
USER TEXT HERE
– You’re using App v. 10.2
How can I do this? thanks
Please check with this code. it works good.