This is the WebView
I have in my application
webView = (WebView) findViewById(R.id.web);
webView.getSettings().setAllowFileAccess(true);
webView.getSettings().setJavaScriptEnabled(true);
webView.getSettings().setPluginState(WebSettings.PluginState.ON);
webView.setLongClickable(false);
webView.setWebViewClient(wvc);
webView.loadUrl("file://" + path);
The webview is loading a local flash (.swf) file
I've been trying to get create a zoom system that works in the WebView
. I've already tried using the setBuiltInZoomControls(true)
, but when I zoom in, the flash automatically adjusts itself to the WebView
's size, making the zoom controls useless.
How can I stop this from happening? (in the flash file or the WebView
)
Thanks in advance.