コード例 #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
ファイル: MP3MusicPlayer.java プロジェクト: hukewei/leapband
 /** Pauses the music file. */
 public void Pause() {
   if (player != null && !player.getSourceLocation().equals(null)
       || !player.getSourceLocation().equals("")) {
     player.pause();
   }
 }