Skip to content

Instantly share code, notes, and snippets.

@ar-android
Created January 20, 2018 14:09
Show Gist options
  • Save ar-android/a7f1b58a0e28c5d188636b600bf59efd to your computer and use it in GitHub Desktop.
Save ar-android/a7f1b58a0e28c5d188636b600bf59efd to your computer and use it in GitHub Desktop.
Android intent Share
public static void share(Activity activity){
Intent sendIntent = new Intent();
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT, "Download \n" + activity.getString(R.string.app_name) +
"\nhttps://play.google.com/store/apps/details?id=" + activity.getPackageName());
sendIntent.setType("text/plain");
activity.startActivity(sendIntent);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment