Sunday 27 May 2012

Share Intent in Android


Intent sharingIntent = new Intent(Intent.ACTION_SEND);
sharingIntent.setType("text/plain");
sharingIntent.putExtra(Intent.EXTRA_TITLE, "New Upcoming Android Game by Fundumobi.com!");
sharingIntent.putExtra(Intent.EXTRA_TEXT,"New Upcoming Android Game by Fundumobi.com!");
startActivity(Intent.createChooser(sharingIntent, "Share"));

No comments:

Post a Comment