当前位置: 首页 > 知识库问答 >
问题:

使用意图附加图像。行动发送

太叔弘壮
2023-03-14

我正在尝试使用不同的应用程序附加图像,代码如下:

val sendIntent = Intent(Intent.ACTION_SEND)
sendIntent.putExtra(Intent.EXTRA_TEXT, "Test example")
sendIntent.type = "image/png"
sendIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse(logo.absolutePath))
startActivity(sendIntent)

附加的图像是使用以下代码生成的:

// Generate file for application logo
val path = Environment.getExternalStorageDirectory().absolutePath
val logo = File(path, "logo.png")

// If logo doesn't exist
if (!logo.exists())
{
    // Create new file
    logo.createNewFile()

    // Save application logo to new file
    val fOut = FileOutputStream(logo)
    val image = BitmapFactory.decodeResource(applicationContext.resources, R.mipmap.ic_launcher_round)
    image.compress(Bitmap.CompressFormat.PNG, 100, fOut)
    fOut.flush()
    fOut.close()
}

但当我试图打开GMAIL与此意图,只有文本显示应用程序与错误:无法附加文件.

我错过了什么?

编辑

这是另一个解决方案:android。操作系统。FileUrieExposedException:文件。jpg通过ClipData曝光了app之外的内容。项目getUri()

StrictMode.VmPolicy.Builder builder = new StrictMode.VmPolicy.Builder();
StrictMode.setVmPolicy(builder.build());

共有2个答案

李烨
2023-03-14

没有文件提供程序,您无法发送文件。例如,Gmail不请求READ/WRITE_EXTERNAL_STORAGE权限,因此无法访问您的文件。您必须使用带有GRANT_READ_URI_PERMISSION的文件提供程序。您可以在这里阅读更多信息

  1. https://developer.android.com/reference/android/support/v4/content/FileProvider
司寇旺
2023-03-14

在AndroidN上,你必须使用FileProvider来获取Uri

请参阅下面的文件共享示例。

ArrayList<Uri> files = new ArrayList<Uri>();

        File file = new File(<Your File Path>);
        Uri uri;

        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
            uri = FileProvider.getUriForFile(DetailActivity.this, BuildConfig.APPLICATION_ID + ".provider", file);
        } else {
            uri = Uri.fromFile(file);
        }
        files.add(uri);

        Intent intent = new Intent();
        intent.setAction(Intent.ACTION_SEND_MULTIPLE);
        intent.putExtra(Intent.EXTRA_SUBJECT, "Product Sharing");
        intent.setType("image/jpeg");
        intent.putExtra(Intent.EXTRA_TEXT, "ANY TEXT MESSAGE");
        intent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, files);
        startActivity(intent);

将下面的代码放在Androidanifest.xml应用程序标签中

<provider
            android:name="android.support.v4.content.FileProvider"
            android:authorities="${applicationId}.provider"
            android:exported="false"
            android:grantUriPermissions="true">
            <meta-data
                android:name="android.support.FILE_PROVIDER_PATHS"
                android:resource="@xml/filepaths" />
        </provider>

并放置文件路径。xml资源目录中的xml文件

<?xml version="1.0" encoding="utf-8"?>
<paths>
    <external-path name="external_files" path="."/>
</paths>
 类似资料:
  • 我从girdview适配器类调用startActivityForResult事件。Gridview适配器类是由myFragment类创建的。intent extras始终返回null onActivityResult事件。你认为错误在哪里?谢了。 我的gridview适配器类; onActivityResult事件的MyFragment类

  • 拍照: 相册: OnActivityResult:用户意图发送图像uri

  • 我使用MediaStore捕捉图像。ACTION_IMAGE_CAPTURE意图。它在大多数设备中工作正常。但它在一些最新的Android设备中工作不正常。 我的意图是使用相机捕捉图像并将其发送到服务器,但不是将该图像存储在设备的默认库中。 **:当我捕获图像时,它会以onActivityResult方法返回其他一些画廊图像,而不是在一些最新的android设备中捕获的图像。我使用下面的代码来捕获

  • 问题内容: 当有人通过我的应用程序工作时,我正在尝试在后台加载图像。我写的逻辑是这样的: 但是,当我尝试启动这样的新线程时: 但是在程序中我得到错误Looper.prepare必须被调用,随后是逻辑looper.quit() 但是,当我添加Looper.prepare()时,似乎中断了程序,并且没有要调用的looper.quit()。 我是否正确创建任务? 编辑: 这是我尝试运行时的错误日志: 我

  • 问题内容: Go具有出色的图像处理和数据库功能,但是我很难从较小的图像创建一个大图像。有谁知道如何在Golang中提取两个png或jpeg文件并将它们连接起来,形成一个包含两个(或更多)文件的大图像? 我目前正在读取png文件,如下所示: 我对如何获取此png RGBA数据并与其他RGBA数据连接和/或将其组合成“空”图像感到困惑。 问题答案: 创建一个新的空白图像(NewRGBA),其边界的大小

  • 我使用滑翔库来显示网格视图中的图像,但是在我的图像视图中显示了注释。 E/Glide:class com。邦普泰克。滑行负载发动机GlideException:无法加载资源 我的代码在使用位图时工作正常。这是我的密码: