Both functions dont set the current Position to 0 and I have to call seekTo(0) after I called stop() in order to get the desired behavior. Moreover I need to call prepare() after I called stop().

So what is the benefit? I could easily use pause() and seekTo(0) to get the same result...

link|improve this question

71% accept rate
in pause you don't need to save the current position, it start at that point whenever you start again, while in stop, it reset the current position to 0 and start again. – Hiren Dabhi Feb 16 at 8:37
no it doesn't reset – Sebastian Oberste-Vorth Feb 16 at 9:11
feedback

1 Answer

up vote 4 down vote accepted

stop() clears the buffered music from memory while pause() doesn't. It's good practice to release as much memory you can. It will keep your app stable.

link|improve this answer
2  
+1. That's why you need to call prepare() in onStop() but not in onPause(). – Josephus Villarey Feb 16 at 8:37
Exactly, that's the reason. – gkr Feb 16 at 8:42
+1 for your answer . – Chirag Raval Feb 16 at 8:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.