I want to display swf into a webview. The swf didn't display in the web view. I have this message fail(the browser should render some flash content, not this). So I try this code. But I am getting ,swf file in encoded form in webview. What to do to display this swf??
String url ="file:///android_asset/hoge.swf";
WebView wv=(WebView) findViewById(R.id.WebView01);
wv.getSettings().setPluginsEnabled(true);
wv.loadUrl(url);