Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. sharedText = String.replace("youtube.com/", "youMYtube.com/");
  2.  
  3. Toast.makeText(this, sharedText, Toast.LENGTH_LONG).show();
  4. Intent shareIntent = new Intent(Intent.ACTION_SEND);
  5. shareIntent.setType("text/plain");
  6. shareIntent.putExtra(Intent.EXTRA_TEXT, sharedText);
  7. startActivity(Intent.createChooser(shareIntent, "Share..."));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement