1

在我的應用程序中,我將播放VideoView。如何實現android VideoView的暫停動作?

我沒有使用Media Controller作爲播放,暫停和停止等多種選項。

而不是我使用單一按鈕來使用播放和暫停功能。

我實現諸如下面的代碼:

case R.id.playVideoBtn: 
     if(myVideoView.isPlaying()){ 
      myVideoView.pause(); 
     }else{ 

      //MediaController ctlr=new MediaController(this); 
     // ctlr.setMediaPlayer(myVideoView); 
      //myVideoView.setMediaController(ctlr); 

      myVideoView.start(); 
     } 


     break; 

現在我對如何實現相同的按鈕單擊暫停功能奇蹟。

請幫我。

謝謝。

回答

5

VideoView.java我發現......

start() goes with pause(), but resume() goes with suspend() (the latter pair causing the screen to blank out). 

併爲您的解決方案看看這個例子Playing Video

+0

是。感謝你的回答。 – 2012-01-27 10:44:04