BlackBerry - video player - FramePositioningControl is null
Posted
by sinu-mathews
on Stack Overflow
See other posts from Stack Overflow
or by sinu-mathews
Published on 2010-03-23T04:50:52Z
Indexed on
2010/03/23
8:13 UTC
Read the original article
Hit count: 374
I'm developing a blackberry application that plays video from the server. I've used Player.start()
and Player.stop()
for playing and pausing a video. But I also need rewind, forward and seek bar controls in my application. I tried using FramePositioningControl for these controls. But the following code is returning null.
FramePositioningControl framePositioningControl =
(FramePositioningControl) player.getControl("FramePositioningControl");
I searched several forums and they say many players do not support FramePositioningControl. What players support FramePositioningControl? And what else should I do to add these controls in my application?
© Stack Overflow or respective owner