videoview - Android JW Player issue -


i had implement jw player in android, getting black screen when video load live url.

my html file

    <!doctype html> <html>     <head>        <script src="http://jwpsrv.com/library/wcmd+p3deekqvciacpygxa.js"></script>     </head>     <body>        <div id='my-video'></div> <script type='text/javascript'> jwplayer('my-video').setup({ file: 'http://content.bitsontherun.com/videos/lwmjevvv-364767.mp4', image: 'http://www.longtailvideo.com/content/images/jw-player/lwmjevvv-876.jpg', width: '320', height: '180' }); </script>     </body> </html> 

and java code is

mybrowser.getsettings().setjavascriptenabled(true); 

mybrowser.loadurl("http://. . . /hardik/jwplayerhtml.html");

what wrong me? please me.


Comments

Popular posts from this blog

c# - Operator '==' incompatible with operand types 'Guid' and 'Guid' using DynamicExpression.ParseLambda<T, bool> -