国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統(tǒng) > Android > 正文

android實現(xiàn)多圖文分享朋友圈功能

2019-10-22 18:23:04
字體:
供稿:網(wǎng)友

很多安卓程序員都在尋找如何調(diào)用系統(tǒng)分享可以實現(xiàn)朋友圈多圖加文字分享的功能,小編經(jīng)過測試入坑后,為你整理以下內(nèi)容:

private void shareMultiplePictureToTimeLine(File... files) {  Intent intent = new Intent();  ComponentName comp = new ComponentName("com.tencent.mm",    "com.tencent.mm.ui.tools.ShareToTimeLineUI");  intent.setComponent(comp);  intent.setAction(Intent.ACTION_SEND_MULTIPLE);  intent.setType("image/*");  ArrayList<Uri> imageUris = new ArrayList<Uri>();  for (File f : files) {   imageUris.add(Uri.fromFile(f));  }  intent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, imageUris);  intent.putExtra("Kdescription", "wwwwwwwwwwwwwwwwwwww");  startActivity(intent);}
localIntent = new Intent("android.intent.action.SEND");  localIntent.putExtra("android.intent.extra.TEXT", paramString1);  localIntent.putExtra("sms_body", paramString1);  localIntent.putExtra("Kdescription", paramString1);  if (localUri1 == null)  break;  localIntent.putExtra("android.intent.extra.STREAM", localUri1);  localIntent.setType("image/*");  context.startActivity(Intent.createChooser(localIntent, "Share"));

其中最關(guān)鍵的就是:

intent.putExtra("Kdescription", text);

文字部分一直分享失敗,搞了很久都分享失敗后來才發(fā)現(xiàn)是需要加上這一句了·····坑!
原來Kdescription是微信描述信息的鍵。

原因是:微信的代碼已經(jīng)做了代碼混淆,因此看起來有些困難,但是仔細(xì)觀察還是有很多東西可以看出來的。在此類中我們尋找Intent傳遞的有關(guān)key的名稱,找到了好幾個,因此我們可以一個個來測試,最終發(fā)現(xiàn)就是Kdescription這個鍵來傳遞描述信息。

android,多圖,分享朋友圈

 


注:相關(guān)教程知識閱讀請移步到Android開發(fā)頻道。
發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 廉江市| 武鸣县| 清河县| 阿鲁科尔沁旗| 青岛市| 安平县| 林西县| 阿图什市| 民和| 怀来县| 朝阳市| 合山市| 彝良县| 嘉祥县| 新建县| 宁陕县| 兴和县| 昌宁县| 新巴尔虎左旗| 华亭县| 嘉荫县| 瑞丽市| 冀州市| 遵化市| 句容市| 平阴县| 开江县| 元朗区| 西乌| 布尔津县| 叶城县| 香格里拉县| 安多县| 镇巴县| 洪湖市| 安岳县| 沛县| 波密县| 二连浩特市| 加查县| 中宁县|