将参数传递给Voice Recorder

时间:2015-04-21 21:34:29

标签: android voice-recording

我需要录制音频,我很乐意使用内置录音机,但是传递参数会很好:特定路径,特定数据等等。

它可以吗?

我喜欢这个解决方案,因为代码很短:

            Intent intent = new Intent(MediaStore.Audio.Media.RECORD_SOUND_ACTION);
            intent.putExtra(MediaStore.EXTRA_OUTPUT, outputFileUri);
            startActivityForResult(intent, AUDIO_RECORDING);

这里我有一个将文件复制到特定位置的示例:

How can I specify the output file's folder when calling RECORD_SOUND_ACTION?

1 个答案:

答案 0 :(得分:0)

我想这不可能。如果您需要自定义它,您将需要开发自己的活动。您可以使用Google Sample!

http://developer.android.com/guide/topics/media/audio-capture.html