In my android app I have a WebView to display html data from our website. Sometimes the page will have youtube embed objects. This doesn\'t show up properly in the app. Is t
You cannot show them embedded except perhaps on devices that have Flash.
However, if you can parse out the YouTube video details, you may be able to construct an ACTION_VIEW
Intent
that will show them on the YouTube application...for those Android devices that have the YouTube application.
You might also experiment with HTML5's tag, which AFAIK is supported in the Browser application and may therefore work in
WebView
.