Intent sendIntent = new Intent(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT, "This is my text to send.");
sendIntent.setType("text/plain");
String title = "Share this with";
// Create and start the chooser
Intent chooser = Intent.createChooser(sendIntent, title);
startActivity(chooser);

//发送一张图片
Intent shareIntent = new Intent();
File
file = new File("mnt/sdcard/share.png");
System.out.println(Uri.fromFile(file));
shareIntent.setAction(Intent.ACTION_SEND);
shareIntent.putExtra(Intent.EXTRA_STREAM,
file);
shareIntent.setType("image/jpeg");
String
title = "Share this with";
//
Create and start the chooser
Intent
chooser = Intent.createChooser(shareIntent, title);
startActivity(chooser);