Button btnReplay = (Button)findViewById(R.id.button04);
btnReplay.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
mVideoView.seekTo(0);
mVideoView.start();
}
});
|
|
