Android Question How to pause and resume Media Player on B4XPage?

Oke

Member
Licensed User
Longtime User
How to make the music in the mediaplayer play again when the page is loaded ?
 

Oke

Member
Licensed User
Longtime User
B4X:
Private Sub B4XPage_Background
    mMediaPlayer.Pause
End Sub

Private Sub B4XPage_Foreground
    mMediaPlayer.Play
End Sub
I have done this, but it doesn't work, music still doesn't play when the page is opened again
 
Upvote 0

DonManfred

Expert
Licensed User
Longtime User
have done this, but it doesn't work, music still doesn't play when the page is opened again
add LOGs to see if the code is actually reached at all.

Otherwise upload a small project showing the problem
 
Upvote 0
Top