Re: [android-developers] Problem with video in WebView

2012-06-13 Thread vaibs malviya
i think your solution is in this line *iframe width=\1100px\ height=\1500px\ src=\ http://www.youtube.com/embed/g6-8zkbCjl8\; frameborder=\0\ allowfullscreen* there is a *allowfullscreen* so try to remove or replace it by other. On Tue, Jun 12, 2012 at 10:03 PM, Angélica Oliveira

Re: [android-developers] Problem with video in WebView

2012-06-12 Thread Angélica Oliveira
Thank you very much! I could watch the video with this code. The only problem is that the video only appears when I watch it on fullscreen mode. Why is that happening? Anyone knows? I am testing it on Samsung Galaxy Tab. Thank's in advance again! 2012/6/9 vaibs malviya

Re: [android-developers] Problem with video in WebView

2012-06-09 Thread Angélica Oliveira
I tried playing .mp4 video, from my internal storage. I saw something about implement onShowCustomView but I didn't realize what I have to do, can you (Deniz) give me an example? I already searched it on google, but I didn't find anything, I would like to watch the video on the webview, not in a

Re: [android-developers] Problem with video in WebView

2012-06-09 Thread vaibs malviya
hy Deniz is correct, u should create your on custom view of web-view let me explain u ,see my code implement this code and check it out. *public class TestYoutubeVedio extends Activity * *{* * * *HtmlvVido mWebView;* * * * * * * * * * * * * *@Override* *public void

Re: [android-developers] Problem with video in WebView

2012-06-07 Thread Amit Gupta
I tried playing .swf video. video in http://www.in.com/videos/watchvideo-cnbc-awaaz-1626397.html plays well in browser but not in webview. On Thursday, 7 June 2012 13:55:58 UTC+8, Narendra Singh Rathore wrote: Please clarify, which video format are you trying to display. -- You received

Re: [android-developers] Problem with video in WebView

2012-06-07 Thread abhijeet tomar
I think , the video tag is not supportedwhy are you not using VideoView for playing video? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this

Re: [android-developers] Problem with video in WebView

2012-06-07 Thread Deniz Tuna
You have to implement onShowCustomView and also onHideCustomView in your own webChromeClient class. After that you can view videos by clicking on them. However autoplay tag seems like not working with android from what i tried. Searching for google for how to view html5 video in android will

Re: [android-developers] Problem with video in WebView

2012-06-07 Thread Narendra Singh Rathore
Are you sure, your device supports swf file, or you have proper plugin/player for it? May be that's the problem. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To

Re: [android-developers] Problem with video in WebView

2012-06-06 Thread Narendra Singh Rathore
Please clarify, which video format are you trying to display. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

[android-developers] Problem with video in WebView

2012-06-04 Thread Angélica Oliveira
Hello, I am new in android, and I am developing an app, where I want to watch a movie in a webview, using HTML 5, but the video doesn't appear, when I run the app I can see only the video controls... The code in html that I am using is: code = !DOCTYPE html + html + head + titleSimple

Re: [android-developers] Problem with video in WebView

2012-06-04 Thread Amit Gupta
I am also facing the same issue. Regards, Amit Gupta On Mon, Jun 4, 2012 at 3:02 AM, Angélica Oliveira angelica@gmail.comwrote: Hello, I am new in android, and I am developing an app, where I want to watch a movie in a webview, using HTML 5, but the video doesn't appear, when I run