如何通过android中的whats app分享pdf和短信

时间:2017-05-24 06:12:14

标签: android pdf

您好我想在什么时候分享文本和pdf文件,如何实现。目前我可以同时分享其中任何一个。

我试过这个但是没有用。

  Intent share = new Intent();
  share.setAction(Intent.ACTION_SEND);
  share.setType("application/pdf");
  share.putExtra(Intent.EXTRA_TEXT, "My sample image text");
  share.putExtra(Intent.EXTRA_STREAM, uri);
  share.setPackage("com.whatsapp");
 startActivity(shareIntent);

0 个答案:

没有答案