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.
How
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