美文网首页
Android原生分享PDF文件

Android原生分享PDF文件

作者: wilson93 | 来源:发表于2017-08-30 11:24 被阅读0次

    /**
    * 分享文件
    */
    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和微信等。

    相关文章

      网友评论

          本文标题:Android原生分享PDF文件

          本文链接:https://www.haomeiwen.com/subject/zbwzdxtx.html