码迷,mamicode.com
首页 > 移动开发 > 详细

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

时间:2015-06-03 13:48:45      阅读:214      评论:0      收藏:0      [点我收藏+]

标签: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);
    }

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

标签:android   分享   一键分享   

原文地址:http://blog.csdn.net/yy1300326388/article/details/46342985

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!