Added Media.seekTo(int milliseconds);

This commit is contained in:
kernelsandirs
2011-05-04 11:51:26 -07:00
parent b94eedaf07
commit ffbc010d7b
3 changed files with 3 additions and 2 deletions

View File

@@ -238,7 +238,7 @@ public class AudioPlayer implements OnCompletionListener, OnPreparedListener, On
*/
public void seekToPlaying(int milliseconds) {
if (this.mPlayer != null) {
this.mPlayer.seekTo(milliseconds);
this.mPlayer.seekTo(milliseconds);
}
}