What we have to do is, just the below
public static void shareOnSocialMedia(Activity parentActivity, String subject, String body){
Intent myIntent = new Intent(Intent.ACTION_SEND);
myIntent.setType("text/plain");
String shareBody = body;
String shareSub = subject;
myIntent.putExtra(Intent.EXTRA_SUBJECT, shareBody);
myIntent.putExtra(Intent.EXTRA_TEXT, shareBody);
parentActivity.startActivity(Intent.createChooser(myIntent, "Share using"));
}
references
https://developer.android.com/training/sharing/shareaction
public static void shareOnSocialMedia(Activity parentActivity, String subject, String body){
Intent myIntent = new Intent(Intent.ACTION_SEND);
myIntent.setType("text/plain");
String shareBody = body;
String shareSub = subject;
myIntent.putExtra(Intent.EXTRA_SUBJECT, shareBody);
myIntent.putExtra(Intent.EXTRA_TEXT, shareBody);
parentActivity.startActivity(Intent.createChooser(myIntent, "Share using"));
}
references
https://developer.android.com/training/sharing/shareaction
No comments:
Post a Comment