How can we play YouTube embeded code in an Android application using webview?
Check out the following SO post: How to embed a YouTube clip in a WebView on Android
Try the following code which may help you. I just framed it for your reference
myWebView = (WebView) findViewById( R.id.webview_compontent ); String playVideo= "<html><body>Youtube video .. <br> <iframe class="youtube-player" type="text/html" width="640" height="385" src="http://www.youtube.com/embed/bIPcobKMB94" frameborder="0"></body></html>" myWebView.loadData(playVideo, "text/html", "utf-8");
Refer the following link for how to use Webview: http://developer.android.com/reference/android/webkit/WebView.html
2.1m questions
2.1m answers
60 comments
57.0k users