我想在j2me中播放视频,我正在使用的代码是
int index = 0;
LoadVideo(index);
String url = "file:///e:/videos/Abc.3gp";
try{
Player p = Manager.createPlayer(url);
p.realize();
//Get the video controller
VideoControl video = (VideoControl) p.getControl("VideoControl");
//Get a GUI to display the video
Item videoItem = (Item)video.initDisplayMode(VideoControl.USE_GUI_PRIMITIVE, null);
//videoItem.setPreferredSize(100, 200);
//Append the GUI to a form
form.append(videoItem);
display.setCurrent(form);
//Start the video
p.start();
}catch(IOException ioe){ } catch(MediaException me){ }
问题是只在小屏幕模式下播放视频,我怎样才能让它适合显示,有人请帮助我....
答案 0 :(得分:0)
您应该使用VideoControl
视频Control.set显示尺寸(宽度,高度);
注意:但在某些诺基亚手机中,3gp视频无法扩展。
希望这会对你有所帮助。