【发布时间】:2014-09-05 15:48:40
【问题描述】:
我在资产文件夹中有图像,需要与whatsapp应用程序共享它
我试过这段代码,它一直给我分享失败再试一次!怎么了?!
Intent share = new Intent(Intent.ACTION_SEND);
share.setType("image/*");
share.setPackage("com.whatsapp");
// share.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(new File("file:///assets/epic/adv.png")));
share.putExtra(Intent.EXTRA_STREAM, Uri.parse("file:///assets/epic/adv.png"));
this.startActivity(Intent.createChooser(share, "share_via"));
【问题讨论】:
标签: android image share whatsapp