分享到微信朋友圈代码。不好用,最后选择了shareSdk。

 

    private static void shareToTimeLine(File file) {
        Intent intent = new Intent();
        ComponentName comp = new ComponentName("com.tencent.mm", "com.tencent.mm.ui.tools.ShareToTimeLineUI");
        intent.setComponent(comp);
        intent.setAction("android.intent.action.SEND");
        intent.setType("image/*");
        intent.putExtra(Intent.EXTRA_TEXT, "我是文字");
        intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(file));
        act.startActivity(intent);
    }

 

相关文章:

  • 2022-12-23
  • 2021-09-09
  • 2021-12-23
  • 2022-01-08
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-03
猜你喜欢
  • 2021-12-09
  • 2021-10-10
  • 2022-12-23
  • 2021-03-31
  • 2022-01-24
  • 2021-07-06
  • 2022-01-16
相关资源
相似解决方案