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

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

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

2019-12-12 01:40:18
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

很多安卓程序員都在尋找如何調(diào)用系統(tǒng)分享可以實(shí)現(xiàn)朋友圈多圖加文字分享的功能,小編經(jīng)過(guò)測(cè)試入坑后,為你整理以下內(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);

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

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

發(fā)表評(píng)論 共有條評(píng)論
用戶(hù)名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 天柱县| 布尔津县| 长岭县| 库尔勒市| 凤庆县| 方正县| 沾益县| 白山市| 高密市| 泰兴市| 临沧市| 尼勒克县| 衡东县| 永宁县| 平果县| 张家口市| 临澧县| 贺兰县| 南汇区| 玉门市| 阿图什市| 张掖市| 孟连| 五原县| 保德县| 高雄县| 醴陵市| 桓仁| 赤城县| 集贤县| 即墨市| 宝坻区| 清河县| 德昌县| 水城县| 荃湾区| 胶州市| 运城市| 梓潼县| 图片| 仙游县|