I have already done a voice recording by this code:

recorder = new MediaRecorder();
        recorder.setAudioSource(MediaRecorder.AudioSource.MIC);
        recorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
        recorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);
        recorder.setOutputFile(Environment
                .getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS)
                +"test.3gp");
        try {
            recorder.prepare();
        } catch (IOException io) {

            Toast.makeText(getApplicationContext(), "Record File", Toast.LENGTH_LONG).show();

        }
        recorder.start();

and trying to share it using a share intent like this:

Intent sharingIntent = new Intent(android.content.Intent.ACTION_SEND);

        sharingIntent.setType("video/3gp");

            sharingIntent.putExtra(Intent.EXTRA_STREAM, "file:///sdcard/Downloadtest.3gp");

        startActivity(Intent.createChooser(sharingIntent, "Share via"));

but when my mail is setup it send via email, but i want to share it vaia mms? its being attatched in mms? how to do it?

link|improve this question

47% accept rate
feedback

1 Answer

Please try following code,

Intent sendIntent = new Intent(Intent.ACTION_SEND); 
sendIntent.putExtra("sms_body", "some text"); 
sendIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse(url));
sendIntent.setType("audio/3gp"); 
link|improve this answer
but i am attatching audio here, will it work? – Nirupoma Saha Chaiti Feb 25 at 6:05
yes, in url variable, set the path of your audio file – Android Feb 25 at 6:11
I did the same u said, but not working :( its saying sorry you can not add this picture in your message? is there any specific file format? – Nirupoma Saha Chaiti Feb 25 at 6:20
I have updated my code, please try again. – Android Feb 25 at 6:33
It is not working, just force closing :( – Nirupoma Saha Chaiti Feb 25 at 7:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.