ashu2121

Untitled

Feb 16th, 2016
17
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.53 KB | None | 0 0
  1.   Intent intent = new Intent(Intent.ACTION_SEND);
  2.                 intent .setType("text/plain");
  3.                 intent .setPackage("com.android.twitter");
  4.                 intent .putExtra(Intent.EXTRA_TEXT, "Hello World this message came from android app");
  5.                 try {
  6.                     getActivity().startActivity(intent);
  7.                 } catch (android.content.ActivityNotFoundException ex) {
  8.                     Toast.makeText(getActivity(),"Twiter not been installed.", Toast.LENGTH_LONG).show();
  9.                 }
Add Comment
Please, Sign In to add comment