android - How to start inbuilt voice recorder application? -
i have attach voice recorded file attachment android application. have created separate activity voice recording without using inbuilt voice recorder application , it's working fine.
i thought of using inbuilt application 'voice recorder' instead of using activity have created.
i know using intent should start new activity. i'm not able find out how start inbuilt voice recorder application , how should opened application?
kindly let me know if has experience in handling scenario.
thanks in advance!
you can try this
public static final int activity_record_sound = 0; intent intent = new intent(mediastore.audio.media.record_sound_action); startactivityforresult(intent, activity_record_sound);
Comments
Post a Comment