Friday, 4 December 2020

How to share message or URL or app like with all social media in android programmatically

 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