Search code examples
androidemailandroid-intentvoice-recording

How to send recorded voice in email?


I am developing a Android Application, In which I need to send voice by email. Ans I want that such flow, record a voice and send mail as a audio file in attachment. and I want that voice should not remaining in phone or SD card. is it possible ?


Solution

  • Here is what you need, It works with me.......

    Uri uri = Uri.fromFile(new File(YOUR_DIR, YOUR_FILE_NAME)));
        Intent it = new Intent(Intent.ACTION_SEND);   
        it.putExtra(Intent.EXTRA_SUBJECT, "TITLE");   
        it.putExtra(Intent.EXTRA_TEXT, "CONTENT"); 
        it.putExtra(Intent.EXTRA_STREAM, uri);
        it.setType("audio/rfc822");   
        context.startActivity(Intent.createChooser(it,context.getString(R.string.share)));