在android中加载SWF文件

时间:2014-07-08 16:28:05

标签: android flash

我需要在我的应用程序中播放swf文件,我搜索了google lot并最终得到以下代码,但我的webview仍为空白,

WebView mWebView = (WebView) getView().findViewById(R.id.webView1);
            String html = "<object width=\"550\" height=\"400\"> <param name=\"movie\" value=\"file:///android_asset/newlifeacu.swf\"> <embed src=\"file:///android_asset/newlifeacu.swf\" width=\"550\" height=\"400\"> </embed> </object>";
String mimeType = "text/html";
String encoding = "utf-8";
mWebView.loadData(html, mimeType, encoding);
mWebView.getSettings().setJavaScriptEnabled(true);

注意:我想玩4.1或更高版本。

任何帮助都会非常明显,请各位朋友帮忙。 谢谢&amp;问候, 古纳

0 个答案:

没有答案