Example usage for android.media AudioTrack PLAYSTATE_PAUSED

List of usage examples for android.media AudioTrack PLAYSTATE_PAUSED

Introduction

In this page you can find the example usage for android.media AudioTrack PLAYSTATE_PAUSED.

Prototype

int PLAYSTATE_PAUSED

To view the source code for android.media AudioTrack PLAYSTATE_PAUSED.

Click Source Link

Document

indicates AudioTrack state is paused

Usage

From source file:net.sf.asap.Player.java

private boolean isPaused() {
    return audioTrack == null || audioTrack.getPlayState() == AudioTrack.PLAYSTATE_PAUSED;
}