//不指定电话号码的短信分享
Intent intent = new Intent(Intent.ACTION_SENDTO,Uri.parse("smsto:"));
intent.putExtra("sms_body", "测试");startActivity(intent);
//指定电话号码的短信分享
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.putExtra("address", "10086");
intent.putExtra("sms_body", "1");
intent.setType("vnd.android-dir/mms-sms");
startActivity(intent);
//人人、qq、微信等分享
Intent intent = new Intent(Intent.ACTION_SEND);
intent.putExtra(Intent.EXTRA_SUBJECT, "title");
intent.putExtra(Intent.EXTRA_TEXT, "content");
intent.setType("text/*");
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(Intent.createChooser(intent, “title”));