2011-07-01 46 views
5

私はWebViewで表示するために以下のデータを使用しています。これらはHTMLタグで、ビデオを参照しているiframeの です。iframeタグを使用してWebView内でビデオを再生できませんか?

問題をクリックすると、再生ボタンが表示されますが、ビデオは再生できません。

WebViewの中でこのビデオを再生できますか?

<p></p><P> because of Jon’s pro-growth, business-friendly policies, Utah's economy expanded at more than triple the national rate and was named the best state for business by <EM>Forbes.</em><BR /><BR /><IFRAME height=241 src="http://player.vimeo.com/video/25349114" frameBorder=0 width=425></iframe></p><br /> 

<P>America needs a dose of the same medicine. Today, our nation has the second highest corporate tax rate in the developed world. We have convoluted and confusing regulations. 
<!--break--><!--break--><p></p> 

私はアンドロイドブラウザでこのURLを実行しようとすると、videoviewを開き、そのファイルを完全に再生しますが、iframeには表示されません。 http://player.vimeo.com/video/25349114

+0

をチェックする価値? – dhuma1981

答えて

3

をこのコードを使用します。また

// how to enable the webview plugin changed in API 8 
if (Build.VERSION.SDK_INT < 8) { 
    mWebView.getSettings().setPluginsEnabled(true); 
} else { 
    mWebView.getSettings().setPluginState(PluginState.ON); 
} 

あなたはWebViewの中でこの文字列をロードするために使用されている方法flash player is installed

2
WebView wv; 
wv = (WebView) findViewById(R.id.mywebview); 

wv.getSettings().setJavaScriptEnabled(true); 
wv.getSettings().setBuiltInZoomControls(true); 
wv.getSettings().setPluginsEnabled(true); 

重要なのは、ブラウザのプラグインを有効にすることです...あなたのビデオをロードし、また、お使いのデバイスののFlashPlayerを更新する

+0

それはちょっと作品は、ちょうど私が見ているから臆病に見える:) – Warpzit

関連する問題