Android原生分享PDF文件

2017-08-30  本文已影响0人  wilson93

/**
* 分享文件
*/
private void shareFile(File file, String whatpackage) {

    Intent share_intent = new Intent();
    share_intent.setAction(Intent.ACTION_SEND);//设置分享行为
    share_intent.setType("*/*");//设置分享内容的类型
    share_intent.setPackage(whatpackage);
    share_intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(file));//添加分享内容
    startActivity(share_intent);


}
private static final String SHARE_WX = "com.tencent.mm";
private static final String SHARE_QQ = "com.tencent.mobileqq";

原生分享没有回调,可以设置筛选分享的应用如QQ和微信等。

上一篇 下一篇

猜你喜欢

热点阅读