i'm trying to create an app that allows voice recording. i hope to call the default voice recorder app just like how i call the camera app. what i wanted is my app will intent/call the default app. after recording, it will return immediately to my app (just like what happen when i call for the camera)
the code that i used for calling the camera :
Intent takePictureFromCameraIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
is there anyway that is close to the code above, where its simple and also achieved what i wanted ?
Try this,
And onActivityResult