Methods Summary |
---|
public synchronized int | getCurrentPosition()
return mDelegate.getCurrentPosition();
|
public synchronized int | getDuration()
return mDelegate.getDuration();
|
public synchronized boolean | isPlaying()
return mDelegate.isPlaying();
|
public synchronized boolean | isReadyToPlay()
return mDelegate.isReadyToPlay();
|
public synchronized void | pause()
mDelegate.pause();
|
public synchronized void | prepare()
mDelegate.prepare();
|
public synchronized void | release()
mDelegate.release();
|
public synchronized void | reset()
mDelegate.reset();
|
public synchronized void | seekTo(int startPosition)
mDelegate.seekTo(startPosition);
|
public void | setAudioStreamType(int streamType)
mDelegate.setAudioStreamType(streamType);
|
public synchronized void | setDataSource(java.lang.String path)
mDelegate.setDataSource(path);
|
public synchronized void | setDataSource(android.content.Context context, android.net.Uri intentUri)
mDelegate.setDataSource(context, intentUri);
|
public synchronized void | setOnCompletionListener(MediaPlayer.OnCompletionListener listener)
mDelegate.setOnCompletionListener(listener);
|
public synchronized void | setOnErrorListener(MediaPlayer.OnErrorListener listener)
mDelegate.setOnErrorListener(listener);
|
public void | setVariableSpeed(float rate)
((VariableSpeed) mDelegate).setVariableSpeed(rate);
|
public synchronized void | start()
mDelegate.start();
|