我想在 BlackBerry 中播放 10 秒长的视频。视频播放完成后,我想转到另一个屏幕。为此,我想知道播放器的当前状态(例如播放、停止、暂停等)。
这是我现在使用的代码。在这个问题上需要帮助。
InputStream is = getClass().getResourceAsStream("/video/battery_tip.mp4");
player = Manager.createPlayer(is, "video/mp4");
player.prefetch();
player.realize();
VideoControl vc = (VideoControl) player.getControl("VideoControl");
Field fld = (Field) vc.initDisplayMode(VideoControl.USE_GUI_PRIMITIVE, "net.rim.device.api.ui.Field");
vc.setDisplayFullScreen(true);
vc.setVisible(true);
add(fld);
player.start();