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