android WebView stop Flash plugin onPause

时间秒杀一切 提交于 2019-12-30 10:47:12

问题


I have a WebView that contains a html file that contains a Flash plugin (a video).

When the user presses play on the Flash plugin, the video plays fine.

However when the user closes the app or moves to a new Activity, the Flash is still playing in the background. Going back to the view appears to create a new thread with the Flash plugin running on it.

How can we stop the Flash plugin running onPause?

Thanks


回答1:


I ran into the same issue. The following worked for me:

@Override
protected void onDestroy() {
    super.onDestroy();
    final WebView webview = (WebView)findViewById(R.id.webPlayer);
    // Calling .clearView does not stop the flash player must load new data
    webview.loadData("", "text/html", "utf-8");
}



回答2:


try this.

 public boolean onKeyDown(int keyCode, KeyEvent event) {
    if (keyCode == KeyEvent.KEYCODE_BACK && webview.canGoBack()) {
        webview.goBack();
       return true;
    }
    if (keyCode == KeyEvent.KEYCODE_BACK) {
        //webview=null;
        webview.reload();
    }
    return super.onKeyDown(keyCode, event);
   }  

Pavan



来源:https://stackoverflow.com/questions/5761873/android-webview-stop-flash-plugin-onpause

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!