コード例 #1
0
ファイル: MP3MusicPlayer.java プロジェクト: hukewei/leapband
 public void Restart() {
   if (player != null && !player.getSourceLocation().equals(null)
       || !player.getSourceLocation().equals("")) {
     player.stop();
     player.play();
   }
 }
コード例 #2
0
 /**
  * Initiate playback preparation and wait until playback will start.
  *
  * @throws InterruptedException
  */
 public void playSync() throws InterruptedException {
   play();
   waitForState(PlayerState.PLAYING);
 }