Hello,
does anyone know how I can set the activity so that a playback that runs on a WebView in the Activity also continues when I go out of the App?
I tried the following code:
does anyone know how I can set the activity so that a playback that runs on a WebView in the Activity also continues when I go out of the App?
I tried the following code:
B4X:
Sub Activity_Resume
WebView1.LoadUrl(WebView1.Url)
End Sub
Sub Activity_Pause (UserClosed As Boolean)
WebView1.LoadUrl(WebView1.Url)
End Sub