1

DailyMotion の動画を Web ビューに埋め込もうとしましたが、プレビューは表示されましたが、再生しようとすると機能しません。

私はネットで解決策を探していましたが、実際の例は見つかりませんでした。

これがコード

String data_html = "<!DOCTYPE HTML> <html>"
            + "<head>"
            + "<style>"
            + "body"
            + "{"
            + "margin:0;"
            + "padding:0;"
            + "height: 100%;"
            + "width: 100%;"
            + "background-color: #000;"
            + "color: #fff;"
            + "font-family: sans-serif;"
            + "overflow: hidden;"
            + "-webkit-tap-highlight-color: rgba(0, 0, 0, 0);" /* Disable ugly Android highlight */
            + "}"
            + "</style>"
            + "</head>"
            + "<body>"
            + "<iframe src=\"http://www.dailymotion.com/embed/video/xu4vre\" width=\"300\" height=\"160\" frameborder=\"0\"></iframe>"
            + "</body>" + "</html>";

    webView.loadData(data_html, "text/html", null); 
4

1 に答える 1

1

Dailymotion で動画の埋め込みコードを取得し、次のように videoHtml を割り当てます。

    webView = (WebView) findViewById(R.id.webView1);
    videoHtml = "<iframe frameborder=\"0\" width=\"480\" height=\"270\" src=\"http://www.dailymotion.com/embed/video/xznb64\"></iframe><br /><a href=\"http://www.dailymotion.com/video/xznb64_leyla-ile-mecnun-dan-evlilik-programlarina-gonderme_news\" target=\"_blank\">Leyla İle Mecnun&#039;dan Evlilik Programlarına...</a> <i>ile  <a href=\"http://www.dailymotion.com/trthaber\" target=\"_blank\">trthaber</a></i>";
    webView.loadData(videoHtml, "text/html", "UTF-8");
    webView.getSettings().setLayoutAlgorithm(LayoutAlgorithm.SINGLE_COLUMN);
    webView.getSettings().setJavaScriptEnabled(true);
    webView.getSettings().setPluginsEnabled(true);
于 2013-05-07T08:34:25.833 に答える