WebView 中的 Flash 无法在 Android 3.2 上运行
我遇到的问题仅发生在我的 Motorola Xoom 上,我已通过 OTA 更新到 3.2。我有一个简单的应用程序,它使用 WebView 加载一个包含 Flash 内容的小 html。这是代码片段。
mWebView = (WebView) findViewById(R.id.webview);
mWebView.getSettings().setJavaScriptEnabled(true);
mWebView.getSettings().setPluginsEnabled(true);
我知道它是正确的,因为它可以在运行 Android 2.2 的 Samsung Galaxy S 上正常运行。还有其他人看到这个问题吗?知道我该如何解决这个问题吗?
非常感谢,我真的被困在这里了。
I am having a problem that only happens on my Motorola Xoom which I have updated to 3.2 through OTA. I have a simple application that uses a WebView to load a small html that has flash content in it. Here is the code snippet.
mWebView = (WebView) findViewById(R.id.webview);
mWebView.getSettings().setJavaScriptEnabled(true);
mWebView.getSettings().setPluginsEnabled(true);
I know it is correct because it can run fine on my Samsung Galaxy S running Android 2.2. Anybody else seen this problem? Any idea how I can solve this problem?
Many thanks and I am really stuck here.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用最新的 android Api 构建您的应用程序 (13),并激活需要显示 Flash 的活动的硬件加速(相同的链接,仅在下面一点)。
Try to build your application with the latest android Api (13), and activate hardware acceleration (same link, just a little below) on your activity that need to display flash.