Share Your Data In Social Networks Using Intent :-) Just Simple !!!!!!
Inside Button click Event
Intent shareIntent = new Intent();
shareIntent.setAction(Intent.ACTION_SEND);
shareIntent.setType("text/plain");
shareIntent.putExtra(Intent.EXTRA_TEXT, "Hello, from tutorialspoint");
startActivity(Intent.createChooser(shareIntent, "Share your thoughts !!!"));
No comments:
Post a Comment