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();