android 3.0 环境下, 用webview 打开视频

android 3.0 环境下, 用webview 打开视频,老是只有声音,没有图像。但2.2下正常播放。
主代码如下:        mWebView = new WebView(this);
                WebSettings settings = mWebView.getSettings();
                settings.setJavaScriptEnabled(true);
                settings.setPluginState(PluginState.ON);
                                //以上 在2.2上运行,一切显示正常。
                     在3.0上要在Manifest的application中加入                      
                     android:hardwareAccelerated="true" 
                               才可以正常播放

你可能感兴趣的:(android)