I want to use flash in webview.
I used the following code.
mWebView = (WebView) findViewById(R.id.webview);
mWebView.getSettings().setPluginsEnabled(true);
mWebView.loadUrl("http://domain-path/flash/test.html");
The test.html file contains an embedded Flash object.
But when I run this, it does not display anything.
Please suggest .....
source
share