码迷,mamicode.com
首页 > 移动开发 > 详细

Android分享图文到朋友圈代码。

时间:2014-08-11 17:21:53      阅读:348      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   color   io   ar   art   cti   

分享到微信朋友圈代码。不好用,最后选择了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);
    }

 

Android分享图文到朋友圈代码。,布布扣,bubuko.com

Android分享图文到朋友圈代码。

标签:android   style   blog   color   io   ar   art   cti   

原文地址:http://www.cnblogs.com/wfh1988/p/3904838.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!