facebook twitter hatena line email

Android/VideoView/他ボタン

提供: 初心者エンジニアの簡易メモ
移動: 案内検索

リプレイ

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