¿Cómo adjuntar archivos con el envío de correo en la aplicación de Android?

Estoy enviando correo a través de mi aplicación. Para eso estoy usando el siguiente código.

    Intent i = new Intent(Intent.ACTION_SEND);
i.setType("text/plain");
i.putExtra(Intent.EXTRA_EMAIL  , new String[]{"[email protected]"});
i.putExtra(Intent.EXTRA_SUBJECT, "subject of email");
i.putExtra(Intent.EXTRA_TEXT   , "body of email");
try {
    startActivity(Intent.createChooser(i, "Send mail..."));
} catch (android.content.ActivityNotFoundException ex) {
    Toast.makeText(MyActivity.this, "There are no email clients installed.", Toast.LENGTH_SHORT).show();
}

Simplemente funciona bien, pero quiero adjuntar un archivo xml con él. ¿Es posible? ¿Cómo

Respuestas a la pregunta(8)

Su respuesta a la pregunta