android - 通过 Android Intent 共享位图

标签 android android-intent bitmap intentfilter

在我的 android 应用程序中,我有一个位图(比如 b)和一个按钮。现在,当我单击按钮时,我想共享位图。我正在使用 onClick() 中的以下代码来实现这一点:-

Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("image/png");
intent.putExtra(Intent.EXTRA_STREAM, b);
startActivity(Intent.createChooser(intent , "Share"));

我期待能够处理此 Intent 的所有应用程序的列表,但我什么也没得到。 android studio 中没有应用列表,也没有任何错误。我的应用程序只是被挂起一段时间然后退出。

我检查了位图,它很好(它不为空)。

我哪里出错了?

最佳答案

我找到了解决方案的 2 个变体。两者都涉及将位图保存到存储中,但图像不会出现在图库中。

第一个变体:

保存到外部存储

  • 但到应用程序的私有(private)文件夹。
  • 对于 API <= 18,它需要许可,对于更新它不需要。

1。设置权限

添加到AndroidManifest.xml标签之前

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" android:maxSdkVersion="18"/>

2。保存方法:

 /**
 * Saves the image as PNG to the app's private external storage folder.
 * @param image Bitmap to save.
 * @return Uri of the saved file or null
 */
private Uri saveImageExternal(Bitmap image) {
    //TODO - Should be processed in another thread
    Uri uri = null;
    try {
        File file = new File(getExternalFilesDir(Environment.DIRECTORY_PICTURES), "to-share.png");
        FileOutputStream stream = new FileOutputStream(file);
        image.compress(Bitmap.CompressFormat.PNG, 90, stream);
        stream.close();
        uri = Uri.fromFile(file);
    } catch (IOException e) {
        Log.d(TAG, "IOException while trying to write file for sharing: " + e.getMessage());
    }
    return uri;
}

3。检查存储可访问性

外部存储可能无法访问,因此您应该在尝试保存之前检查它:https://developer.android.com/training/data-storage/files

/**
 * Checks if the external storage is writable.
 * @return true if storage is writable, false otherwise
 */
public boolean isExternalStorageWritable() {
    String state = Environment.getExternalStorageState();
    if (Environment.MEDIA_MOUNTED.equals(state)) {
        return true;
    }
    return false;
}

第二个变种

使用 FileProvider 保存到 cacheDir。它不需要任何权限。

1。在 AndroidManifest.xml 中设置 FileProvider

<manifest>
    ...
    <application>
        ...
        <provider
            android:name="android.support.v4.content.FileProvider"
            android:authorities="com.mydomain.fileprovider"
            android:exported="false"
            android:grantUriPermissions="true">
                <meta-data
                    android:name="android.support.FILE_PROVIDER_PATHS"
                    android:resource="@xml/file_paths" />
        </provider>
        ...
    </application>
</manifest>

2。添加 res/xml/file_paths.xml 的路径

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

3。保存方法:

 /**
 * Saves the image as PNG to the app's cache directory.
 * @param image Bitmap to save.
 * @return Uri of the saved file or null
 */
private Uri saveImage(Bitmap image) {
    //TODO - Should be processed in another thread
    File imagesFolder = new File(getCacheDir(), "images");
    Uri uri = null;
    try {
        imagesFolder.mkdirs();
        File file = new File(imagesFolder, "shared_image.png");

        FileOutputStream stream = new FileOutputStream(file);
        image.compress(Bitmap.CompressFormat.PNG, 90, stream);
        stream.flush();
        stream.close();
        uri = FileProvider.getUriForFile(this, "com.mydomain.fileprovider", file);

    } catch (IOException e) {
        Log.d(TAG, "IOException while trying to write file for sharing: " + e.getMessage());
    }
    return uri;
}

有关文件提供程序的更多信息 - https://developer.android.com/reference/android/support/v4/content/FileProvider

压缩和保存可能很耗时,因此应该在不同的线程中完成

实际分享

/**
 * Shares the PNG image from Uri.
 * @param uri Uri of image to share.
 */
private void shareImageUri(Uri uri){
    Intent intent = new Intent(android.content.Intent.ACTION_SEND);
    intent.putExtra(Intent.EXTRA_STREAM, uri);
    intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
    intent.setType("image/png");
    startActivity(intent);
}

关于android - 通过 Android Intent 共享位图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33222918/

相关文章:

java - 相机不工作

Android RequestLocationUpdates 到带有额外包的 pendingItent

android - 如何调用android系统相机并将图片存储在某个文件夹中?

java - 在 Android 中裁剪和调整图像大小

java - 如何从 openCV android 中的 Byte[] 获取 Mat 对象?

bitmap - DICOM和DICOM叠加问题

android - 调用需要 API 级别 9(当前最小值为 8): android. os.StrictMode#setThreadPolicy

android - 任何人都知道我在哪里可以找到 android 的示例硬件/硬件 c 文件

android - 如何在 ArrayAdapter 中调用 getSupportFragmentManager()

android - 启动器的 Intent 操作