I've created a simple demo application in which I'm trying to embed youtube videos.
Here is the <object> tag that I'm using
String urlTag = "<object><param name=\"movie\" value=\"http://www.youtube.com/v/opZ69P-0Jbc?version=3&feature=player_detailpage\">" +
"<param name=\"allowFullScreen\" value=\"true\"><param name=\"allowScriptAccess\" value=\"always\">" +
"<embed style=\"width:100%; height:100%\" src=\"http://www.youtube.com/v/opZ69P-0Jbc?version=3&feature=player_detailpage\" type=\"application/x-shockwave-flash\" allowfullscreen=\"true\" allowScriptAccess=\"always\" width=\"200\" height=\"300\"></object>";
Video is embedded and it runs fine. But, when I click on the full screen button, the demo application crashes. I've referred to other links on SO but of no help.
I've tried the above mentioned code on this site(replace the object tag). It works fine. I dont what is going wrong. Thanks.
UPDATE 1: On @DarkXphenomenon's recommendation, I found out that I was getting this error:
java.lang.NullPointerException
android.webkit.PluginFullScreenHolder.show(PluginFullScreenHolder.java:85)
Got rid of the error by adding webView.setWebChromeClient(new WebChromeClient());. Reference link. Now the demo does not crash, but still it does not play the video in full screen mode. The screen goes blank.
UPDATE 2: Also, many a times the entire embedded player vanishes. On checking the WebView sample ApiDemo, I found out that such a thing happens occurs in it also. Is the WebView buggy on Ice cream sandwich?
