前言
鄯善網(wǎng)站制作公司哪家好,找成都創(chuàng)新互聯(lián)公司!從網(wǎng)頁設(shè)計(jì)、網(wǎng)站建設(shè)、微信開發(fā)、APP開發(fā)、成都響應(yīng)式網(wǎng)站建設(shè)公司等網(wǎng)站項(xiàng)目制作,到程序開發(fā),運(yùn)營維護(hù)。成都創(chuàng)新互聯(lián)公司于2013年開始到現(xiàn)在10年的時(shí)間,我們擁有了豐富的建站經(jīng)驗(yàn)和運(yùn)維經(jīng)驗(yàn),來保證我們的工作的順利進(jìn)行。專注于網(wǎng)站建設(shè)就選成都創(chuàng)新互聯(lián)公司。
在做項(xiàng)目的過程中需要實(shí)現(xiàn)文字和圖片的分享,有兩種方式:
1. 使用android sdk中自帶的Intent.ACTION_SEND實(shí)現(xiàn)分享。
2. 使用shareSDK、友盟等第三方的服務(wù)。
鑒于使用的方便,此次只介紹使用Android sdk中自帶的方式來實(shí)現(xiàn)分享的功能。
分享文字
/** * 分享文字內(nèi)容 * * @param dlgTitle * 分享對話框標(biāo)題 * @param subject * 主題 * @param content * 分享內(nèi)容(文字) */ private void shareText(String dlgTitle, String subject, String content) { if (content == null || "".equals(content)) { return; } Intent intent = new Intent(Intent.ACTION_SEND); intent.setType("text/plain"); if (subject != null && !"".equals(subject)) { intent.putExtra(Intent.EXTRA_SUBJECT, subject); } intent.putExtra(Intent.EXTRA_TEXT, content); // 設(shè)置彈出框標(biāo)題 if (dlgTitle != null && !"".equals(dlgTitle)) { // 自定義標(biāo)題 startActivity(Intent.createChooser(intent, dlgTitle)); } else { // 系統(tǒng)默認(rèn)標(biāo)題 startActivity(intent); } }
分享單張圖片
/** * 分享圖片和文字內(nèi)容 * * @param dlgTitle * 分享對話框標(biāo)題 * @param subject * 主題 * @param content * 分享內(nèi)容(文字) * @param uri * 圖片資源URI */ private void shareImg(String dlgTitle, String subject, String content, Uri uri) { if (uri == null) { return; } Intent intent = new Intent(Intent.ACTION_SEND); intent.setType("image/*"); intent.putExtra(Intent.EXTRA_STREAM, uri); if (subject != null && !"".equals(subject)) { intent.putExtra(Intent.EXTRA_SUBJECT, subject); } if (content != null && !"".equals(content)) { intent.putExtra(Intent.EXTRA_TEXT, content); } // 設(shè)置彈出框標(biāo)題 if (dlgTitle != null && !"".equals(dlgTitle)) { // 自定義標(biāo)題 startActivity(Intent.createChooser(intent, dlgTitle)); } else { // 系統(tǒng)默認(rèn)標(biāo)題 startActivity(intent); } }
分享多張圖片
//分享多張圖片 public void shareMultipleImage(View view) { ArrayListuriList = new ArrayList<>(); String path = Environment.getExternalStorageDirectory() + File.separator; uriList.add(Uri.fromFile(new File(path+"australia_1.jpg"))); uriList.add(Uri.fromFile(new File(path+"australia_2.jpg"))); uriList.add(Uri.fromFile(new File(path+"australia_3.jpg"))); Intent shareIntent = new Intent(); shareIntent.setAction(Intent.ACTION_SEND_MULTIPLE); shareIntent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, uriList); shareIntent.setType("image/*"); startActivity(Intent.createChooser(shareIntent, "分享到")); }
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。