在Android WebView中播放Flash?

时间:2011-11-20 13:39:51

标签: android flash plugins webview android-webview

如何在WebView中播放Flash内容? 任何教程?

1 个答案:

答案 0 :(得分:2)

尝试setPluginsEnabled(true)

mWebView = (WebView) findViewById(R.id.webview);
mWebView.getSettings().setJavaScriptEnabled(true);
mWebView.getSettings().setPluginsEnabled(true);

相关: