How to stop youtube video playing in Android webview?
See the following post about WebView threads never stopping Essentially you’ll need to call the WebView’s onPause method from your own Activity’s onPause method. The only trick with this is that you cannot call the WebView’s onPause method directly because it is hidden. Therefore you will need to call it indirectly via reflection. The following … Read more