Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("text/plain");
intent.putExtra(
Intent.EXTRA_TEXT,
"Hey, check out this amazing app..\nhttps://play.google.com/store/apps/details?id="
+ context.getPackageName());
context.startActivity(Intent.createChooser(intent,
"Share to Friends"));
intent.setType("text/plain");
intent.putExtra(
Intent.EXTRA_TEXT,
"Hey, check out this amazing app..\nhttps://play.google.com/store/apps/details?id="
+ context.getPackageName());
context.startActivity(Intent.createChooser(intent,
"Share to Friends"));
No comments:
Post a Comment