我想在程序中錄制聲音,在一些設備中可以正常的運行,但是在 Samsung Galaxy 中卻出現以下的異常:
android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.provider.MediaStore.RECORD_SOUND }
我使用的下面的代碼:
Intent intent = new Intent(MediaStore.Audio.Media.RECORD_SOUND_ACTION);
startActivityForResult(intent, ACTIVITY_RECORD_SOUND);
在stackoverflow上看到了類似的問題,方法是使用FileObserver監聽文件。
地址在這兒:http://stackoverflow.com/questions/6746979/invoking-audio-recorder-and-getting-the-resulting-file