List of usage examples for android.media AudioTrack PLAYSTATE_PAUSED
int PLAYSTATE_PAUSED
To view the source code for android.media AudioTrack PLAYSTATE_PAUSED.
Click Source Link
From source file:net.sf.asap.Player.java
private boolean isPaused() { return audioTrack == null || audioTrack.getPlayState() == AudioTrack.PLAYSTATE_PAUSED; }