将文件添加为gmail的附件

问题描述 投票:0回答:1

当我添加文件作为附件到gmail,我没有看到我的文件,只有消息“其中一个文件的大小超过20mb”,但我检查,我必须文件json和图像,json的大小小于1kb和图像有尺寸小于600kB。

我检查了,我没有机会压缩更多的文件,并没有看到我需要这样做的原因。

Intent sharingIntent = new Intent(Intent.ACTION_SEND_MULTIPLE);
        sharingIntent.setType("vnd.android.cursor.dir/email");

        Uri jsonPath = Uri.fromFile(json);
        Uri screenshotPath = Uri.fromFile(image);
        ArrayList<Uri> uris = new ArrayList<>();
        uris.add(json);
        uris.add(image);
        StrictMode.VmPolicy.Builder builder = new StrictMode.VmPolicy.Builder();
        StrictMode.setVmPolicy(builder.build());
        sharingIntent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, uris);
        sharingIntent.putExtra(Intent.EXTRA_SUBJECT, "Please entry the subject");
        sharingIntent.putExtra(Intent.EXTRA_TEXT, "Please entry the content of email");
        startActivity(Intent.createChooser(sharingIntent, "Choose direct application"));

我想要包含这些文件:)

android gmail size add email-attachments
1个回答
0
投票

好的,我有安装。

fileIn.setReadable(true,false)

© www.soinside.com 2019 - 2024. All rights reserved.