Advertisement
Guest User

Untitled

a guest
Dec 20th, 2016
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.57 KB | None | 0 0
  1.                 case R.id.menu_context_share:
  2.                     Intent sendIntent = new Intent();
  3.                     sendIntent.setAction(Intent.ACTION_SEND);
  4.                     sendIntent.putExtra(Intent.EXTRA_TEXT, "I'm Listening " + StrName + "\n" + " I Would like to share this with you. Here You Can Download This Application from PlayStore " + "https://play.google.com/store/apps/details?id=" + mContext.getPackageName());
  5.                     sendIntent.setType("text/plain");
  6.                     mContext.startActivity(sendIntent);
  7.                     return true;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement