android - Cannot play video inside WebView using iframe tag? -
i using following data display in webview
. these html tags along iframe referring video.
now problem when click on it, shows play button cannot play video.
can play video inside webview
or not?
<p></p><p> because of jon’s pro-growth, business-friendly policies,&nbsp;utah's economy expanded @ more triple national rate , named best state business by&nbsp;<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 dose of same medicine. today, our nation has second highest corporate tax rate in developed world. have convoluted , confusing regulations. <!--break--><!--break--><p></p>
when try run url in android browser opens videoview , plays file why not in iframe? http://player.vimeo.com/video/25349114
the key thing enable browser plugins.
// how enable webview plugin changed in api 8 if (build.version.sdk_int < 8) { mwebview.getsettings().setpluginsenabled(true); } else { mwebview.getsettings().setpluginstate(pluginstate.on); }
also worth checking flash player installed
Comments
Post a Comment