I'm using an intent to start sound recording activity, but when the activity opens it doesn't start record. how can i autostart record? perhaps there are some extras to do it but i don't find nothing on internet and on android developers. here is my code
Intent intent=new Intent(MediaStore.Audio.Media.RECORD_SOUND_ACTION);
context.startActivity(intent);
i know it can be done because i found an example where it work. but i don't manage to replicate it. Thanks in advance XD