Tuesday, July 31, 2012

[android-developers] Re: Audio Capture

The problem is likely that your app is still dormant.  It has not exited.

What has happened is that it is paused, and when you go back to it, onResume is called…  not onCreate.

You can make your app truly exit when the back button is pressed by adding this to your Activity class.

@Override
public void onBackPressed() {

System.exit(0);
}

Some people consider this bad, so I'm only recommending it as a diagnostic aid.


On Tuesday, July 31, 2012 7:30:56 AM UTC-5, Meena Rengarajan wrote:
Once USB is connected i could able to record the audio and playing well in mobile. But once if i closed my application or disconnected USB then i couldnt able to record the audio in direct access. So again if i opened and recorder as a fresh one its not recording the audio ! Whats the problem here ?

On Tuesday, July 31, 2012 12:01:49 PM UTC+5:30, Meena Rengarajan wrote:
I have created a file name "music_1.amr".. When i recording audio it will capture and stored in "music_1.amr" . So i can do play, stop or save.. Now i wanna do is, whenever i create a new audio recording that previous recorded audio should be deleted automatically and this new audio capture must store it in same file name "music_1.amr". What do i wanna do here . Can anyone suggest me?

--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

2 comments: