Intent i = new Intent(Intent.ACTION_SEND);
i.setType("text/plain");
i.putExtra(Intent.EXTRA_SUBJECT, "Sharing URL");
i.putExtra(Intent.EXTRA_TEXT,
"https://play.google.com/store/apps/details?id=com.example.first");
startActivity(Intent.createChooser(i,
"Share the app URL"));
i.setType("text/plain");
i.putExtra(Intent.EXTRA_SUBJECT, "Sharing URL");
i.putExtra(Intent.EXTRA_TEXT,
"https://play.google.com/store/apps/details?id=com.example.first");
startActivity(Intent.createChooser(i,
"Share the app URL"));
No comments:
Post a Comment