So here I have my app. It records audio when it starts and stops recording when thee button is pressed.
MediaRecorder recorder;
File audiofile = null;
private static final String TAG = "SoundRecordingActivity";
ImageButton Record;
TextView Notify;
String path = "/Tips/";
boolean isRecording = true;
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Record = (ImageButton) findViewById(R.id.recordButton);
Notify = (TextView) findViewById(R.id.recordNotification);
try {
startRecording();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
Record.setOnClickListener(new OnClickListener()
{
public void onClick(View arg0)
{
if(isRecording)
{
stopRecording();
isRecording = false;
Notify.setText("Sending record...");
}
}
});
}
public void startRecording() throws IOException {
File sampleDir = Environment.getExternalStorageDirectory();
try {
audiofile = File.createTempFile("sound", ".3gp", sampleDir);
} catch (IOException e) {
Log.e(TAG, "sdcard access error");
return;
}
recorder = new MediaRecorder();
recorder.setAudioSource(MediaRecorder.AudioSource.MIC);
recorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
recorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);
recorder.setOutputFile(audiofile.getAbsolutePath());
recorder.prepare();
recorder.start();
}
public void stopRecording()
{
recorder.stop();
recorder.release();
addRecordingToMediaLibrary();
}
protected void addRecordingToMediaLibrary() {
ContentValues values = new ContentValues(4);
long current = System.currentTimeMillis();
values.put(MediaStore.Audio.Media.TITLE, "audio" + audiofile.getName());
values.put(MediaStore.Audio.Media.DATE_ADDED, (int) (current / 1000));
values.put(MediaStore.Audio.Media.MIME_TYPE, "audio/3gpp");
values.put(MediaStore.Audio.Media.DATA, audiofile.getAbsolutePath());
ContentResolver contentResolver = getContentResolver();
Uri base = MediaStore.Audio.Media.EXTERNAL_CONTENT_URI;
Uri newUri = contentResolver.insert(base, values);
sendBroadcast(new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE, newUri));
Toast.makeText(this, "Added File " + newUri, Toast.LENGTH_LONG).show();
}
I want it to be able to send my recorded audio as an email attachment and also transfer it to text and email it automatically without asking for confirmation. Is this possible? If so, how would I achieve it?
I'm a beginner at this and I've done much research but couldn't find the solution. It would be great if the email could be sent anonymously or at least with a dummy email.