本文整理汇总了Java中com.codename1.components.MediaPlayer类的典型用法代码示例。如果您正苦于以下问题:Java MediaPlayer类的具体用法?Java MediaPlayer怎么用?Java MediaPlayer使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
MediaPlayer类属于com.codename1.components包,在下文中一共展示了MediaPlayer类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createDemo
import com.codename1.components.MediaPlayer; //导入依赖的package包/类
public Container createDemo() {
Container player = new Container(new BorderLayout());
final MediaPlayer mp = new MediaPlayer();
try {
InputStream is = Display.getInstance().getResourceAsStream(getClass(), "/video.mp4");
if(is != null) {
mp.setDataSource(is, "video/mp4", null);
} else {
mp.setDataSource("https://dl.dropbox.com/u/57067724/cn1/video.mp4");
}
} catch (IOException ex) {
ex.printStackTrace();
}
player.addComponent(BorderLayout.CENTER, mp);
return player;
}
示例2: play
import com.codename1.components.MediaPlayer; //导入依赖的package包/类
/**
* Start media playback implicitly setting the component to visible
*/
public void play() {
if(nativePlayer && curentForm == null){
curentForm = Display.getInstance().getCurrent();
Form f = new Form();
f.setLayout(new BorderLayout());
f.addComponent(BorderLayout.CENTER, new MediaPlayer(this));
f.show();
}
player.play();
}