我正在使用 android 并尝试发送附有文件的电子邮件,但收到以下错误。
android.content.ActivityNotFoundException:未找到处理 Intent 的 Activity { act=android.intent.action.SENDTO dat=file://assets/Cards/myfile.pdf typ=Applications/pdf flg=0x10000000(有附加功能)}
我对 android dev 很陌生,所以我有点迷失了我需要做什么。以下是我目前正在尝试的
Intent intent = new Intent(Intent.ACTION_SENDTO ); // it's not ACTION_SEND
intent.setType("text/plain");
intent.putExtra(Intent.EXTRA_SUBJECT, "Card Set "));
intent.putExtra(Intent.EXTRA_TEXT, "");
intent.setData(Uri.parse("mailto:"));
intent.setDataAndType(Uri.parse("file://assets/Cards/" + "myfile.pdf"),
"Applications/pdf");
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
activity.startActivity(intent);
我可以在不附加文件的情况下很好地创建和发送电子邮件。关于我应该如何正确附加文件的任何帮助将非常感谢