AudioRecorder in Android Error Invalid buffer size
问题 I need to record and play audio simultaneously and i use the help of 2 threads for it.here is the code recorder = new AudioRecord(AudioSource.MIC, 8000, AudioFormat.CHANNEL_CONFIGURATION_MONO, AudioFormat.ENCODING_PCM_16BIT, bufferSize); if (recorder.getState() == android.media.AudioRecord.STATE_INITIALIZED) recorder.startRecording(); isRecording = true; audioPlayer = new AudioTrack(AudioManager.STREAM_MUSIC, 8000, AudioFormat.CHANNEL_CONFIGURATION_MONO, AudioFormat.ENCODING_PCM_16BIT,