| android Programming Glossary: enablebuttonshow to convert or record .wav file in 16khz 16bit mono little-endian? http://stackoverflow.com/questions/12260476/how-to-convert-or-record-wav-file-in-16khz-16bit-mono-little-endian  setContentView R.layout.main setButtonHandlers enableButtons false bufferSize AudioRecord.getMinBufferSize RECORDER_SAMPLERATE.. Button findViewById id .setEnabled isEnable private void enableButtons boolean isRecording enableButton R.id.btnStart isRecording enableButton..  case R.id.btnStart  AppLog.logString Start Recording  enableButtons true  startRecording  break   case R.id.btnStop  AppLog.logString.. 
 Android AudioRecord example http://stackoverflow.com/questions/8499042/android-audiorecord-example  setContentView R.layout.main setButtonHandlers enableButtons false int bufferSize AudioRecord.getMinBufferSize RECORDER_SAMPLERATE.. Button findViewById id .setEnabled isEnable private void enableButtons boolean isRecording enableButton R.id.btnStart isRecording enableButton.. void onClick View v switch v.getId case R.id.btnStart  enableButtons true startRecording  break  case R.id.btnStop  enableButtons.. 
 how to convert or record .wav file in 16khz 16bit mono little-endian? http://stackoverflow.com/questions/12260476/how-to-convert-or-record-wav-file-in-16khz-16bit-mono-little-endian  onCreate Bundle savedInstanceState super.onCreate savedInstanceState setContentView R.layout.main setButtonHandlers enableButtons false bufferSize AudioRecord.getMinBufferSize RECORDER_SAMPLERATE RECORDER_CHANNELS RECORDER_AUDIO_ENCODING private void.. btnClick private void enableButton int id boolean isEnable Button findViewById id .setEnabled isEnable private void enableButtons boolean isRecording enableButton R.id.btnStart isRecording enableButton R.id.btnStop isRecording private String getFilename.. @Override public void onClick View v  switch v.getId  case R.id.btnStart  AppLog.logString Start Recording  enableButtons true  startRecording  break   case R.id.btnStop  AppLog.logString Start Recording  enableButtons false  stopRecording  break.. 
 Android AudioRecord example http://stackoverflow.com/questions/8499042/android-audiorecord-example  onCreate Bundle savedInstanceState super.onCreate savedInstanceState setContentView R.layout.main setButtonHandlers enableButtons false int bufferSize AudioRecord.getMinBufferSize RECORDER_SAMPLERATE RECORDER_CHANNELS RECORDER_AUDIO_ENCODING private.. btnClick private void enableButton int id boolean isEnable Button findViewById id .setEnabled isEnable private void enableButtons boolean isRecording enableButton R.id.btnStart isRecording enableButton R.id.btnStop isRecording int BufferElements2Rec.. View.OnClickListener btnClick new View.OnClickListener public void onClick View v switch v.getId case R.id.btnStart  enableButtons true startRecording  break  case R.id.btnStop  enableButtons false stopRecording  break   @Override public boolean onKeyDown.. 
 |