How to share a message or any web URL or our android app like with all social media as well as mail and SMS in android app programmatically via help of Intent. check below.
Intent intent = new Intent();
intent.setAction(Intent.ACTION_SEND);
intent.setType("text/plain");
intent.putExtra(Intent.EXTRA_TEXT, "Hello Friends!");
startActivity(Intent.createChooser(intent, "Share Message"));
Thanks
No comments:
Post a Comment