2

下面是我用来在本机视频播放器中播放视频的代码。但我没有得到任何默认控制,如停止、暂停、播放。

我在这里错过了什么?如果我的代码是错误的,那么正确的代码是什么?

vc = VideoComponent.createVideoPeer("http://localhost/test.mp4"); 
vc.setFullScreen(true);
player = (Player) vc.getNativePeer();
player.realize();
addComponent(vc);
vc.start();
4

1 回答 1

0

通常你应该调用 vc.stop() 等来执行视频控制的操作。我认为有一种方法 getInternal() (或 getNative 我不太记得了,因为我们在Codename One中删除了这个类)来访问本机控件。

于 2012-04-15T16:19:19.040 回答