问题是发送文件时,因为没有将扩展名添加到文件(Pdf)
这是我发送电子邮件的代码:
@Override
public void onClick(View v) {
try {
final Intent emailIntent = new Intent(
android.content.Intent.ACTION_SEND);
emailIntent.setType("application/pdf");
emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, subject);
Uri prueba = Uri.parse("android.resource://" + getPackageName() +"/"+R.raw.tecnolite);
emailIntent.putExtra(Intent.EXTRA_STREAM, prueba);
startActivity(Intent.createChooser(emailIntent, "Enviando correo..."));
} catch (Throwable t) {
Toast toast = Toast.makeText(getApplicationContext(), "Error al enviar el correo", Toast.LENGTH_SHORT);
toast.show();
}
}