Kermia
Kermia

Reputation: 4221

Why media player is still playing when I press back button

I know that we can use onPause() event to stop the MediaPlayer using reset() method. But I want to know why media player is still playing when I press back button?

Upvotes: 0

Views: 1453

Answers (2)

MAC
MAC

Reputation: 15847

you can stop media playing in

onBackPress() method...

Upvotes: 1

waqaslam
waqaslam

Reputation: 68187

I believe your media player is being run by a Service. So when you press back key, it only destroys the Activity, not the Service. So you need to stop the service too in your activity's onStop method

Upvotes: 4

Related Questions