/**
* 分享文件
*/
private void shareFile(File file, String whatpackage) {
Intent share_intent = new Intent();
share_intent.setAction(Intent.ACTION_SEND);//設(shè)置分享行為
share_intent.setType("*/*");//設(shè)置分享內(nèi)容的類型
share_intent.setPackage(whatpackage);
share_intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(file));//添加分享內(nèi)容
startActivity(share_intent);
}
private static final String SHARE_WX = "com.tencent.mm";
private static final String SHARE_QQ = "com.tencent.mobileqq";
原生分享沒有回調(diào)虐秦,可以設(shè)置篩選分享的應用如QQ和微信等平酿。