Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Android text sharing with share option
- Intent sharingIntent = new Intent(Intent.ACTION_SEND);
- sharingIntent.setType("text/html");
- sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, Html.fromHtml("<p>This is the text that will be shared.</p>"));
- startActivity(Intent.createChooser(sharingIntent, "Share using"));
Advertisement
Add Comment
Please, Sign In to add comment