开发者

Audio recording in Android, how to customize the recording experience?

开发者 https://www.devze.com 2023-04-11 13:28 出处:网络
I am recording Audio using, Intent intent = new Intent(MediaStore.Audio.Media.RECORD_SOUND_ACTION); atartActivityForResult(intent, 1); // intent and 开发者_如何学GorequestCode 1

I am recording Audio using,

Intent intent = new Intent(MediaStore.Audio.Media.RECORD_SOUND_ACTION);

atartActivityForResult(intent, 1); // intent and 开发者_如何学GorequestCode 1

In the protected void onActivityResult(int requestCode, int resultCode, Intent data) {

    if (requestCode == 1) {
   ...
              // lets get the uri
            Uri audioUri = data.getData();

'''

So, I have a audio pointed by audioUri.

  1. How can I save a file from this Uri? Please also tell the format of audio.

  2. Is it possible to change the look and feel of the GUI of the audio interface ..., i mean the interface that we see at the time of recording..

thanks

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号