Android 调用系统的分享[完美实现同时分享图片和文字]

android 系统的分享功能

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

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。