Android与其他应用共享多张图片 [英] Android Share Multiple Images with Other Apps

查看:291
本文介绍了Android与其他应用共享多张图片的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试使用本机Android共享功能来共享我使用 Glide 检索到的一组图像.因此,任何与图片兼容的应用都将显示在Android的共享菜单中.

I'm attempting to use the native Android share functionality to share a set of images I retrieved using Glide. So any app that is compatible with the images will show up in Android's share menu.

我创建了一个方法,当单击共享时,该方法将被调用.

I created a method that gets invoked when share is clicked.

private void onShareClicked() { 
    GlideUrl glideUrl = new GlideUrl(url1, new LazyHeaders.Builder().addHeader("x-auth-token", mToken).build());
    FutureTarget<File> image1 = mGlide.load(glideUrl).downloadOnly(SIZE_ORIGINAL, SIZE_ORIGINAL);

    glideUrl = new GlideUrl(url2, new LazyHeaders.Builder().addHeader("x-auth-token", token).build());
    FutureTarget<File> image2 = mGlide.load(glideUrl).downloadOnly(SIZE_ORIGINAL, SIZE_ORIGINAL);

    new ShareImagesTask(this, "image/png").execute(image1, image2);
}

然后创建了ShareImagesTask,它允许您通过完成通过Glide获取图像文件的请求来共享多张图像:

Then created ShareImagesTask which allows you to share multiple images by completing the request to get the images files via Glide:

public class ShareImagesTask extends AsyncTask<FutureTarget<File>, Void, ArrayList<Uri>> {

    private final Context mContext;
    private final String mMimeType;

    public ShareImagesTask(Context context, String mimeType) {
        this.mContext = context;
        this.mMimeType = mimeType;
    }

    @Override
    protected ArrayList<Uri> doInBackground(FutureTarget<File>... targets) {
        final ArrayList<Uri> imageUris = new ArrayList<>(targets.length);

        for(FutureTarget<File> target : targets) {
            try {
                File file = target.get();
                Uri uri = FileProvider.getUriForFile(mContext, "com.myapp.fileprovider", file);
                imageUris.add(uri);
            } catch (Exception ex) {
                Log.w("SHARE", "Sharing failed for one or more image files.", ex);
            }
        }

        return imageUris;
    }

    @Override
    protected void onPostExecute(ArrayList<Uri> result) {
        if(!result.isEmpty()) {
            Intent intent = new Intent();
            intent.setAction(Intent.ACTION_SEND_MULTIPLE);
            intent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, result);
            intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
            intent.setType(mMimeType);
            mContext.startActivity(Intent.createChooser(intent, "Share Your Photo"));
        }
    }
}

这是我的 AndroidManifest.xml FileProvider:

<provider
    android:name=".provider.MyAppFileProvider"
    android:authorities="com.myapp.fileprovider"
    android:grantUriPermissions="true"
    android:exported="false">
    <meta-data
        android:name="android.support.FILE_PROVIDER_PATHS"
        android:resource="@xml/filepaths" />
</provider>

最后,filepaths.xml:

<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
    <cache-path name="shared_images" path="/data/data/com.myapp/cache/image_manager_disk_cache/"/>
</paths>

我可以直达调用FileProvider.getUriForProvider()的地步,它给出了下面的异常.我也尝试将filepaths.xml中的路径更改为异常中提到的路径的变体,但出现相同的错误.有什么想法吗?

I am able to get to the point of calling FileProvider.getUriForProvider() and it gives the exception below. I have also tried changing the path in filepaths.xml to variations of the path mentioned in the exception but I get the same error. Any ideas?

java.lang.IllegalArgumentException:无法找到已配置的根 包含 /data/data/com.myapp/cache/image_manager_disk_cache/11fa9845150748cc77d49a75954d92f246cc7095e72e36b85d6a07dbdeb9cf46.0

java.lang.IllegalArgumentException: Failed to find configured root that contains /data/data/com.myapp/cache/image_manager_disk_cache/11fa9845150748cc77d49a75954d92f246cc7095e72e36b85d6a07dbdeb9cf46.0

推荐答案

替换:

<cache-path name="shared_images" path="/data/data/com.myapp/cache/image_manager_disk_cache/"/>

具有:

<cache-path name="shared_images" />

或可能与:

<cache-path name="shared_images" path="image_manager_disk_cache/"/>

如果您尝试将FileProvider限制为getCacheDir()的子集.

if you are trying to restrict FileProvider to a subset of getCacheDir().

这篇关于Android与其他应用共享多张图片的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆