Skip to content

Instantly share code, notes, and snippets.

@mdsami
Created May 21, 2016 15:19
Show Gist options
  • Save mdsami/fe2ccebc1b38dc146ba1efc7f88f0bfa to your computer and use it in GitHub Desktop.
Save mdsami/fe2ccebc1b38dc146ba1efc7f88f0bfa to your computer and use it in GitHub Desktop.
switch (item.getItemId()){
case R.id.share:{
Intent shareIntent = new Intent(Intent.ACTION_SEND);
shareIntent.setAction(Intent.ACTION_SEND);
shareIntent.setType("text/plain");
shareIntent.putExtra(Intent.EXTRA_TEXT, "Enjoy This Apps https:/apps link");
startActivity(shareIntent);
break;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment