Share Intent in Android
Intent sendIntent = new Intent();
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT, "Sri has referred you to Signup for app, Please download the app");
sendIntent.setType("text/plain");
startActivity(Intent.createChooser(sendIntent, "Invite"));
No comments:
Post a Comment