I'm calling native voice recorder with help of an intent
Intent intent = new Intent(MediaStore.Audio.Media.RECORD_SOUND_ACTION);
And Its capturing voice as i expected. But I couldn't auto stop recording with certain length and size constraints. I tried with following options
// To Limit duration
intent.putExtra("android.intent.extra.durationLimit", 10);
intent.putExtra(MediaStore.EXTRA_DURATION_LIMIT, 10);
// To Limit size
intent.putExtra(MediaStore.EXTRA_SIZE_LIMIT, 1024);
I'm using Samsung Tab 4 running on KitKat.