java.lang.IllegalStateException at android.media.MediaRecorder.start(Native Method)

前端 未结 5 2038
别那么骄傲
别那么骄傲 2021-01-14 12:22

I want to make a voice recorder app but it crashes when i click the \"Start Recording\" button. I get an error saying java.lang.IllegalStateException at android.media.Media

5条回答
  •  無奈伤痛
    2021-01-14 12:57

    you are forgetting to call recorder.prepare() before recordeer.start() function in your beginRecording function.

    Prepare function will take care about lot of things like conversion of analog data to digital audio for compresion and where to store the file etc

提交回复
热议问题