I have an Android app where the content is being displayed inside an embedded web control. Sometimes the content has embedded youtube videos, but they don't show - you can only hear the sound. I've looked at Google's official documentation and cannot see anything wrong with my code. To embed the video, I'm using the following piece of html (where I replace VIDEO_ID with the actual id of the video):
<iframe type="text/html" width="100%" height="240" src="http://www.youtube.com/embed/VIDEO_ID?autoplay=0" frameborder="0" modestbranding="1" />
Any help is appreciated...