Create a sharing button and inside the listen for button click call the share intent
Intent sharingIntent = newIntent(android.content.Intent.ACTION_SEND);
sharingIntent.setType("text/plain");
String shareBody = "Insert the share content body"; sharingIntent.putExtra(android.content.Intent.EXTRA_SUBJECT,"Insert Subject Here");
sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, shareBody);
startActivity(Intent.createChooser(sharingIntent, "Share via"));
Note:
Give internet permission in android manifest file
< uses-permission android:name="android.permission.INTERNET"/>
Comments
Post a Comment