gpt4 book ai didi

Android 发送带附件的电子邮件并不总是有效

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:47:15 25 4
gpt4 key购买 nike

我正在使用 ContentProvider 发送带有附件的电子邮件。

  1. 首先,我将文件写入缓存目录。
  2. 然后我为内容提供者在其中找到的每个文件创建一个带有 url 的电子邮件
  3. 然后我使用 ACTION_SEND_MULTIPLE Intent 开始一个新 Activity 。
  4. 我选择 gmail,然后点击发送按钮。

这有时会起作用,它似乎在一段时间内第一次起作用,但在随后的尝试后却不起作用......但它并不总是这样。

当它不起作用时,电子邮件会卡在 gmail 中发送。这种情况发生在 2.3.3 和 4.0.1 上,在 gmail 客户端中打开邮件并点击发送按钮经常导致邮件几乎立即送达,但不是每次都送达。

使用 Google Drive 打开 Intent 的行为与 gmail 相同。

到目前为止,使用内置的 Exchange 邮件客户端打开 Intent 始终有效。

发送邮件的代码如下:

            Intent sendIntent = new Intent(Intent.ACTION_SEND_MULTIPLE);
sendIntent.putExtra(Intent.EXTRA_EMAIL, exportParams.emailAddresses);
sendIntent.putExtra(Intent.EXTRA_SUBJECT, "Leader Activity Report");
sendIntent.putExtra(Intent.EXTRA_TEXT, "Leader Activity Report, see attached file.");
Uri fileUri = CachedFileProvider.createFileUri(result.fileName);
if (L.dbg())
L.dbg("Using uri:" + fileUri.toString());
ArrayList<Uri> uris = new ArrayList<Uri>();
uris.add(fileUri);
Uri fileUri2 = CachedFileProvider.createFileUri(result.fileNameDayByDay);
uris.add(fileUri2);
if (L.dbg())
L.dbg("Using uri2:" + fileUri2.toString());
sendIntent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, uris);
sendIntent.setType("text/plain");
parent.startActivity(sendIntent);

这是内容提供者

public class CachedFileProvider extends ContentProvider {

private static final String CLASS_NAME = "CachedFileProvider";
public static final String AUTHORITY = "com.josh.lll.file.provider";

private UriMatcher uriMatcher;

@Override
public boolean onCreate() {
uriMatcher = new UriMatcher(UriMatcher.NO_MATCH);
uriMatcher.addURI(AUTHORITY, "*", 1);
return true;
}


@Override
public ParcelFileDescriptor openFile(Uri uri, String mode)
throws FileNotFoundException {
try {
String LOG_TAG = CLASS_NAME + " - openFile";
Log.v(LOG_TAG,
"Called with uri: '" + uri + "' - " + uri.getLastPathSegment());
switch (uriMatcher.match(uri)) {
case 1:
String fileLocation = getContext().getCacheDir() + File.separator
+ uri.getLastPathSegment();
Log.i(CLASS_NAME,"Returning file :"+fileLocation);
ParcelFileDescriptor pfd = ParcelFileDescriptor.open(new File(
fileLocation), ParcelFileDescriptor.MODE_READ_ONLY);
return pfd;
default:
Log.v(LOG_TAG, "Unsupported uri: '" + uri + "'.");
throw new FileNotFoundException("Unsupported uri: "
+ uri.toString());
}
} catch (FileNotFoundException t) {
Bug.major(this, t, "Could not return file descriptor");
throw t;
} catch (RuntimeException t) {
Bug.major(this, t, "Could not return file descriptor");
throw t;
} catch (Error t) {
Bug.major(this, t, "Could not return file descriptor");
throw t;
}
}

public static String createFullyQualifiedFileName(Context c, String fileNamePart) {
File cacheDir = c.getCacheDir();
Log.i(CLASS_NAME,"Using cache dir:"+cacheDir);
return cacheDir + File.separator + fileNamePart;
}

public static Uri createFileUri(String fileNamePart) {
return Uri.parse("content://" + AUTHORITY + "/"+ fileNamePart);
}

public int update(Uri uri, ContentValues contentvalues, String s,
String[] as) {
return 0;
}

@Override
public int delete(Uri uri, String s, String[] as) {
return 0;
}

@Override
public Uri insert(Uri uri, ContentValues contentvalues) {
return null;
}

@Override
public String getType(Uri uri) {
return null;
}

@Override
public Cursor query(Uri uri, String[] projection, String s, String[] as1,
String s1) {
return null;
}

对于成功和“停滞”的电子邮件发送,以下日志消息由 gmail 打印:

04-03 22:17:35.027: I/Gmail(13206): >>>>> Attachment uri: content://com.josh.lll.file.provider/report_20100401_20130402_LeadetJosh_3_1364980653516.csv
04-03 22:17:35.035: I/Gmail(13206): >>>>> type: text/plain
04-03 22:17:35.035: I/Gmail(13206): >>>>> size: 0
04-03 22:17:35.054: I/Gmail(13206): >>>>> Attachment uri: content://com.josh.lll.file.provider/backup_20100401_20130402_LeadetJosh_3_1364980653516_day_by_day.lll
04-03 22:17:35.054: I/Gmail(13206): >>>>> type: text/plain
04-03 22:17:35.054: I/Gmail(13206): >>>>> size: 0

最佳答案

存储在/data/app 或/system 等系统文件夹中的文件会发生这种情况。

解决方法是:将这些文件复制到 SD 卡位置并从那里附加/使用它们。

关于Android 发送带附件的电子邮件并不总是有效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15782343/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com