Well i am trying to implement basic functionality of voice recording , like
Record , play/pause , stop
i am able to do all of them but the only issue is how can i get notified once the audio gets finished playing. I mean if i play an audio file then once it gets finished playing i want a notification that it is stopped now.
so far i have used
mPlayer.start() // to start the audio
mPlayer.stop(); // to stop the audio
mPlayer.pause(); //to pause the audio
i am just trying to find out how would i know once the audio file automatically finished playing