兼容SDK 18以上的系統,直接調用系統分享功能,分享文本、圖片、文件到第三方APP,如:微信、QQ、微博等java
由於偷懶,可直達微信、朋友圈、QQ、QQ空間、微博的分享僅寫了圖片分享的,其餘的文本、文件分享不經常使用到,就不寫了。android
具體圖片分享區分單張圖片分享和多張圖片分享,詳情請看代碼:微信
import android.content.ComponentName; import android.content.Context; import android.content.Intent; import android.content.pm.PackageInfo; import android.content.pm.PackageManager; import android.net.Uri; import android.os.Build; import android.os.StrictMode; import android.text.TextUtils; import java.io.File; import java.util.ArrayList; import java.util.List; /** * 分享文件、圖片、文本 * Created by 她叫我小渝 on 2016/10/15. */ public class ShareFileUtils { /** * 分享文本 * * @param context * @param path */ public static void shareUrl(Context context, String path) { if (TextUtils.isEmpty(path)) { return; } checkFileUriExposure(); Intent it = new Intent(Intent.ACTION_SEND); it.putExtra(Intent.EXTRA_TEXT, path); it.setType("text/plain"); context.startActivity(Intent.createChooser(it, "分享APP")); } /** * 分享文件 * * @param context * @param path */ public static void shareFile(Context context, String path) { if (TextUtils.isEmpty(path)) { return; } checkFileUriExposure(); Intent intent = new Intent(Intent.ACTION_SEND); intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(new File(path))); //傳輸圖片或者文件 採用流的方式 intent.setType("*/*"); //分享文件 context.startActivity(Intent.createChooser(intent, "分享")); } /** * 分享單張圖片 * * @param context * @param path */ public static void shareImage(Context context, String path) { shareImage(context, path, null, null, null); } /** * 分享多張圖片 * * @param context * @param pathList */ public static void shareImage(Context context, List<String> pathList) { shareImage(context, null, pathList, null, null); } /** * 分享到微信好友,單圖 */ public static void shareImageToWeChat(Context context, String path) { //判斷是否安裝微信,若是沒有安裝微信 又沒有判斷就直達微信分享是會掛掉的 if (!isAppInstall(context, "com.tencent.mm")) { ToastUtils.showToast(context, "您尚未安裝微信"); return; } shareImage(context, path, null, "com.tencent.mm", "com.tencent.mm.ui.tools.ShareImgUI"); } /** * 分享到微信好友,多圖 */ public static void shareImageToWeChat(final Context context, List<String> pathList) { //判斷是否安裝微信,若是沒有安裝微信 又沒有判斷就直達微信分享是會掛掉的 if (!isAppInstall(context, "com.tencent.mm")) { ToastUtils.showToast(context, "您尚未安裝微信"); return; } shareImage(context, null, pathList, "com.tencent.mm", "com.tencent.mm.ui.tools.ShareImgUI"); } /** * 分享到微信朋友圈,單圖 */ public static void shareImageToWeChatFriend(Context context, String path) { if (!isAppInstall(context, "com.tencent.mm")) { ToastUtils.showToast(context, "您尚未安裝微信"); return; } shareImage(context, path, null, "com.tencent.mm", "com.tencent.mm.ui.tools.ShareToTimeLineUI"); } /** * 分享到微信朋友圈,多圖 */ public static void shareImageToWeChatFriend(Context context, List<String> pathList) { if (!isAppInstall(context, "com.tencent.mm")) { ToastUtils.showToast(context, "您尚未安裝微信"); return; } shareImage(context, null, pathList, "com.tencent.mm", "com.tencent.mm.ui.tools.ShareToTimeLineUI"); } /** * 分享圖片給QQ好友,單圖 */ public static void shareImageToQQ(Context context, String path) { if (!isAppInstall(context, "com.tencent.mobileqq")) { ToastUtils.showToast(context, "您尚未安裝QQ"); return; } shareImage(context, path, null, "com.tencent.mobileqq", "com.tencent.mobileqq.activity.JumpActivity"); } /** * 分享圖片給QQ好友,多圖 */ public static void shareImageToQQ(Context context, List<String> pathList) { if (!isAppInstall(context, "com.tencent.mobileqq")) { ToastUtils.showToast(context, "您尚未安裝QQ"); return; } shareImage(context, null, pathList, "com.tencent.mobileqq", "com.tencent.mobileqq.activity.JumpActivity"); } /** * 分享圖片到QQ空間,單圖 */ public static void shareImageToQZone(Context context, String path) { if (!isAppInstall(context, "com.qzone")) { ToastUtils.showToast(context, "您尚未安裝QQ空間"); return; } shareImage(context, path, null, "com.qzone", "com.qzonex.module.operation.ui.QZonePublishMoodActivity"); } /** * 分享圖片到QQ空間,多圖 */ public static void shareImageToQZone(Context context, List<String> pathList) { if (!isAppInstall(context, "com.qzone")) { ToastUtils.showToast(context, "您尚未安裝QQ空間"); return; } shareImage(context, null, pathList, "com.qzone", "com.qzonex.module.operation.ui.QZonePublishMoodActivity"); } /** * 分享圖片到微博,單圖 */ public static void shareImageToWeibo(Context context, String path) { if (!isAppInstall(context, "com.sina.weibo")) { ToastUtils.showToast(context, "您尚未安裝新浪微博"); return; } shareImage(context, path, null, "com.sina.weibo", "com.sina.weibo.EditActivity"); } /** * 分享圖片到微博,多圖 */ public static void shareImageToWeibo(Context context, List<String> pathList) { if (!isAppInstall(context, "com.sina.weibo")) { ToastUtils.showToast(context, "您尚未安裝新浪微博"); return; } shareImage(context, null, pathList, "com.sina.weibo", "com.sina.weibo.EditActivity"); } /** * 檢測手機是否安裝某個應用 * * @param context * @param appPackageName 應用包名 * @return true-安裝,false-未安裝 */ public static boolean isAppInstall(Context context, String appPackageName) { PackageManager packageManager = context.getPackageManager();// 獲取packagemanager List<PackageInfo> pinfo = packageManager.getInstalledPackages(0);// 獲取全部已安裝程序的包信息 if (pinfo != null) { for (int i = 0; i < pinfo.size(); i++) { String pn = pinfo.get(i).packageName; if (appPackageName.equals(pn)) { return true; } } } return false; } /** * 分享前必須執行本代碼,主要用於兼容SDK18以上的系統 */ private static void checkFileUriExposure() { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR2) { StrictMode.VmPolicy.Builder builder = new StrictMode.VmPolicy.Builder(); StrictMode.setVmPolicy(builder.build()); builder.detectFileUriExposure(); } } /** * @param context 上下文 * @param path 不爲空的時候,表示分享單張圖片,會檢驗圖片文件是否存在 * @param pathList 不爲空的時候表示分享多張圖片,會檢驗每一張圖片是否存在 * @param pkg 分享到的指定app的包名 * @param cls 分享到的頁面(微博不須要指定頁面) */ private static void shareImage(Context context, String path, List<String> pathList, String pkg, String cls) { if (path == null && pathList == null) { ToastUtils.showToast(context, "找不到您要分享的圖片文件"); return; } checkFileUriExposure(); try { if (path != null) { //單張圖片 if (!MyFileUtils.isFile(path)) { ToastUtils.showToast(context, "圖片不存在,請檢查後重試"); return; } Intent intent = new Intent(); if (pkg != null && cls != null) { //指定分享到的app if (pkg.equals("com.sina.weibo")) { //微博分享的須要特殊處理 intent.setPackage(pkg); } else { ComponentName comp = new ComponentName(pkg, cls); intent.setComponent(comp); } } intent.setAction(Intent.ACTION_SEND); intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(new File(path))); intent.setType("image/*"); //分享文件 context.startActivity(Intent.createChooser(intent, "分享")); } else { //多張圖片 ArrayList<Uri> uriList = new ArrayList<>(); for (int i = 0; i < pathList.size(); i++) { if (!MyFileUtils.isFile(pathList.get(i))) { ToastUtils.showToast(context, "第" + (i + 1) + "張圖片不存在,請檢查後重試"); return; } uriList.add(Uri.fromFile(new File(pathList.get(i)))); } Intent intent = new Intent(); if (pkg != null && cls != null) { //指定分享到的app if (pkg.equals("com.sina.weibo")) { //微博分享的須要特殊處理 intent.setPackage(pkg); } else { ComponentName comp = new ComponentName(pkg, cls); intent.setComponent(comp); } } intent.setAction(Intent.ACTION_SEND_MULTIPLE); intent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, uriList); intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); intent.setType("image/*"); context.startActivity(Intent.createChooser(intent, "分享")); } } catch (Exception e) { ToastUtils.showToast(context, "分享失敗,未知錯誤"); } } }