欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

android实现多图文分享朋友圈功能

程序员文章站 2023-11-21 16:01:52
很多安卓程序员都在寻找如何调用系统分享可以实现朋友圈多图加文字分享的功能,小编经过测试入坑后,为你整理以下内容: private void sharemultip...

很多安卓程序员都在寻找如何调用系统分享可以实现朋友圈多图加文字分享的功能,小编经过测试入坑后,为你整理以下内容:

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"));

其中最关键的就是:

intent.putextra("kdescription", text);

文字部分一直分享失败,搞了很久都分享失败后来才发现是需要加上这一句了·····坑!
原来kdescription是微信描述信息的键。

原因是:微信的代码已经做了代码混淆,因此看起来有些困难,但是仔细观察还是有很多东西可以看出来的。在此类中我们寻找intent传递的有关key的名称,找到了好几个,因此我们可以一个个来测试,最终发现就是kdescription这个键来传递描述信息。

android实现多图文分享朋友圈功能