How to stop video player in Blackberry?

Posted by Rajapandian on Stack Overflow See other posts from Stack Overflow or by Rajapandian
Published on 2010-04-23T05:18:51Z Indexed on 2010/04/26 4:23 UTC
Read the original article Hit count: 200

Filed under:

Hi,

I created one blackberry application which will play a video on a button click.This is my code,

    invocation=new Invocation("file:///SDCard/Blackberry/videos/PlayingVideo/funny.mp4");       
    registry=Registry.getRegistry("net.rim.device.api.content.BlackBerryContentHandler");           
    try
    {               
           registry.invoke(invocation);             
    }
    catch(Exception e)
    {
    }

Now i can play the Video file.After clicking the Back button the native player is going to the background.It always running in the background.But i want to close that player.I have no idea about how to do it.Anybody knows please help me.

© Stack Overflow or respective owner

Related posts about blackberry