Issue
I am trying to call you tube from my web view which is associated with a view stub. The problem is I am able to load the you tube but if I click on the play button of you tube, it is not playing
Here is what I am trying to do
webView = (WebView)findViewById(R.id.webView1);
WebSettings webSet = webView.getSettings();
webSet.setJavaScriptEnabled(true);
// setContentView(webView);
webView.loadUrl("http://www.youtube.com/watch?v=QaIPQMVMRqU&feature=related");
Solution
I included a transparent button on the web view and finally I am able to play it.
Answered By - tejas
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.