标签: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 style blog color io ar art cti
原文地址:http://www.cnblogs.com/wfh1988/p/3904838.html