我正在構建一個聊天應用程序。我正在嘗試添加對視頻的支持。設備上的MediaPlayer中的視頻/ 3gpp
Container container = new Container(new BorderLayout());
Media video = com.codename1.media.MediaManager.createMedia(url, true); // url is the url above
video.setNativePlayerMode(true);
MediaPlayer mp = new MediaPlayer(video);
//place the media player in the container
container.add(BorderLayout.CENTER, mp);
Component component = Container.encloseIn(new FlowLayout(Container.RIGHT), container);
當我做一個調試版本,並把這個在我的iPhone,我只是得到一個黑盒子,我會期待的視頻播放器是。
在模擬器中,我得到了回放控件,但沒有任何視頻。
我在做什麼不正確?