private void share(String content, Uri uri){ spa
Intent shareIntent = new Intent(Intent.ACTION_SEND); it
if(uri!=null){ im
shareIntent.putExtra(Intent.EXTRA_STREAM, uri); margin
shareIntent.setType("image/*"); di
//当用户选择短信时使用sms_body取得文字 vi
shareIntent.putExtra("sms_body", content); co
}else{ background
shareIntent.setType("text/plain"); new
} void
shareIntent.putExtra(Intent.EXTRA_TEXT, content);
//自定义选择框的标题
//startActivity(Intent.createChooser(shareIntent, "邀请好友"));
//系统默认标题
startActivity(shareIntent);
}