Add this code to share text in android:-
Intent intent = new Intent(android.content.Intent.ACTION_SEND);
String shareBody = "Here is the share content body";
intent.setType("text/plain");
intent.putExtra(android.content.Intent.EXTRA_SUBJECT, getString(R.string.share_subject));
intent.putExtra(android.content.Intent.EXTRA_TEXT, shareBody);
startActivity(Intent.createChooser(intent, getString(R.string.share_using)));
0 Comments
Post a Comment