2

我正在开发一个应用程序,它需要在 vimeo 网站上上传的视频流。当我从我的一项活动中启动 webview 时,vimeo 站点成功加载到 webview 上,但问题从这里开始。当我单击播放图标时,它不会进一步移动。加载的 vimeo 视频页面不播放视频。

我试图检查这是否是Android本身的问题,但证明是错误的。如果我单独将 URL 复制到 Android 浏览器并播放,它会成功播放。这就是我毫无头绪的地方,无论我是否缺少配置的 WebView 中的任何内容。

我的代码在这里:

private void getWebPage(final String webpage, final String param2, String param3) {
    // TODO Auto-generated method stub

    final FrameLayout.LayoutParams ZOOM_PARAMS =
            new FrameLayout.LayoutParams(
            ViewGroup.LayoutParams.WRAP_CONTENT,
            ViewGroup.LayoutParams.WRAP_CONTENT,
            Gravity.BOTTOM);
            final Activity activity = this;
            getWindow().setFeatureInt(Window.FEATURE_PROGRESS, Window.PROGRESS_VISIBILITY_ON);
             mWebView = (WebView) findViewById(R.id.webview);


            mWebView.setWebChromeClient(new WebChromeClient() {
            public void onProgressChanged(WebView view, int progress) {

             activity.setTitle(" Loading the content for... "+param2);  
             activity.setProgress(progress * 100);//Make the bar disappear after URL is loaded

          // Return the app name after finish loading
             if(progress == 100)
                // activity.setTitle(R.string.app_name);
                 activity.setTitle("You are now viewing "+param2);

           }
         });

         mWebView.setWebViewClient(new WebViewClient());
         mWebView.getSettings().setJavaScriptEnabled(true);
         mWebView.getSettings().setAppCacheEnabled(true);
         mWebView.getSettings().setDomStorageEnabled(true);
         mWebView.getSettings().setPluginState(WebSettings.PluginState.ON_DEMAND);
         mWebView.getSettings().setLoadWithOverviewMode(true);

      FrameLayout mContentView = (FrameLayout) getWindow().
      getDecorView().findViewById(android.R.id.content);

      mWebView.loadUrl(webpage);
    //Intent newIntent = new Intent(Intent.ACTION_VIEW).setData(Uri.parse("http://vimeo.com/m/45057923"));
    /*Intent newIntent = new Intent(Intent.ACTION_VIEW).setData(Uri.parse(webpage));
    startActivity(newIntent);*/

}
4

1 回答 1

-1

它适用于

mWebView.getSettings().setPluginsEnabled(true);
于 2012-12-31T13:16:37.593 回答