WEB开发网
开发学院手机开发Android 开发 一个 android mp4视频播放代码 阅读

一个 android mp4视频播放代码

 2010-05-26 02:15:00 来源:WEB开发网   
核心提示:发布一个 android mp4视频播放代码public class Activity01 extends Activity{/** Called when the activity is first created. */@Overridepublic void onCreate(Bundle savedInstan

发布一个 android mp4视频播放代码

public class Activity01 extends Activity

{

/** Called when the activity is first created. */

@Override

public void onCreate(Bundle savedInstanceState)

{

super.onCreate(savedInstanceState);

setContentView(R.layout.main);

/* 创建VideoView对象 */

final VideoView videoView = (VideoView) findViewById(R.id.VideoView01);

/* 操作播放的三个按钮 */

Button PauseButton = (Button) this.findViewById(R.id.PauseButton);

Button LoadButton = (Button) this.findViewById(R.id.LoadButton);

Button PlayButton = (Button) this.findViewById(R.id.PlayButton);

/* 装载按钮事件 */

LoadButton.setOnClickListener(new OnClickListener()

{

public void onClick(View arg0)

{

/* 设置路径 */

videoView.setVideoPath(“/sdcard/test.mp4″);

/* 设置模式-播放进度条 */

videoView.setMediaController(new MediaController(Activity01.this));

videoView.requestFocus();

}

});

/* 播放按钮事件 */

PlayButton.setOnClickListener(new OnClickListener()

{

public void onClick(View arg0)

{

/* 开始播放 */

videoView.start();

}

});

/* 暂停按钮 */

PauseButton.setOnClickListener(new OnClickListener()

{

public void onClick(View arg0)

{

/* 暂停 */

videoView.pause();

}

});

}

}

Tags:一个 android mp

编辑录入:coldstar [复制链接] [打 印]
赞助商链接