什麼都不用 !!!!
只需把這個添加到點擊事件中併發
//分享文字 Intent textIntent = new Intent(Intent.ACTION_SEND); //設置格式,文字 textIntent.setType("text/plain"); //設置分享內容 textIntent.putExtra(Intent.EXTRA_TEXT, list1.get(poss).getData().getSummary()); //標題設置併發送 startActivity(Intent.createChooser(textIntent, "分享"));
//分享圖片.net
Intent imageIntent = new Intent(Intent.ACTION_SEND); imageIntent.setType("image/jpeg"); imageIntent.putExtra(Intent.EXTRA_STREAM, "https://static.oschina.net/uploads/cover/3187891_bpiVm_bi.jpg"); startActivity(Intent.createChooser(imageIntent, "分享"));
http://www.jianshu.com/p/0a0e2258b3d6(具體地址)3d
http://blog.csdn.net/chadeltu/article/details/43450713(更詳細具體地址)blog