Processing of Microphone Input
问题 I am trying to get audio data from the microphone. I have achieved this by using the AudioRecord class which fills a buffer with type shorts. Eventually I would like to graph this buffer so that I get an oscilloscope like display (realtime information). The problem is that if I want to display a value (say in text) then I need a different thread to update the UI. Currently I'm doing this by using an AsyncTask and updating the UI with AsyncTasks.publishProgress() . So far I haven't been very