网上比较流行的方法:
在activity的onPause函数中调用webview的onPause函数。
弊端:视频虽然停止播放但是还是在从网上加载数据(观察流量统计);
比较好的方法:
在activity的onPause函数中调用webview的onPause函数。
在activity的onDestroy函数中webview.loadUrl("file:///android_asset/nonexistent.html");
原文:http://stackoverflow.com/questions/5946698/how-to-stop-youtube-video-playing-in-android-webview