|
测试程序:
/**
* 视频播放器测试程序
*
* @author zangweiren 2010-4-8
*
*/
public class TestMediaPlayer {
public static void main(String[] args) {
MediaPlayer player = new MediaPlayerProxy();
System.out.println("Height:" + player.getHeight() + ",Width:"
+ player.getWidth());
player.play();
System.out.println("Height:" + player.getHeight() + ",Width:"
+ player.getWidth());
}
}
测试结果:
Height:800,Width:600
The video is loading,please wait...
The video is loading,please wait...
The video is loading,please wait...
Video loaded.
The video is playing...Height:1024,Width:768
The video is playing...Height:1024,Width:768
The video is playing...Height:1024,Width:768
The video is playing...Height:1024,Width:768
The video is playing...Height:1024,Width:768
Finished.
Height:800,Width:600 |
|