Android/VideoView/他ボタン
提供: 初心者エンジニアの簡易メモ
リプレイ
Button btnReplay = (Button)findViewById(R.id.button04);
btnReplay.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
mVideoView.seekTo(0);
mVideoView.start();
}
});
