RVG
RVG

Reputation: 3576

Can we play video on browserfield of blackberry

i get video url from webservice. Can we play the video on browserfield?

 BrowserField bf = new BrowserField();
     bf.requestContent(url);
     add(bf);

When i execute in simulator. The video image display and follow a error occur that "Access violation reading from 0x00000004".

Can i check on device.? its affect any problem on my device from this error.? Pls help me.

Upvotes: 1

Views: 469

Answers (3)

Arun Kumar Munusamy
Arun Kumar Munusamy

Reputation: 871

Just pass the video url straightly in the browser. It automatically opens the default video player and it plays the video..

Upvotes: 0

Gabor
Gabor

Reputation: 7572

You need to pay it through the built-in browser which automatically opens the built-in video player. Call it like this: Browser.getDefaultSession().displayPage(url);

Upvotes: 2

Rakesh
Rakesh

Reputation: 15047

you cannot access the video from the browser field,this is my opinion.

Upvotes: 0

Related Questions