Added in API level 3

OnPlaybackPositionUpdateListener

interface OnPlaybackPositionUpdateListener
android.media.AudioTrack.OnPlaybackPositionUpdateListener

Interface definition for a callback to be invoked when the playback head position of an AudioTrack has reached a notification marker or has increased by a certain period.

Summary

Public methods
abstract Unit

Called on the listener to notify it that the previously set marker has been reached by the playback head.

abstract Unit

Called on the listener to periodically notify it that the playback head has reached a multiple of the notification period.

Public methods

onMarkerReached

Added in API level 3
abstract fun onMarkerReached(track: AudioTrack!): Unit

Called on the listener to notify it that the previously set marker has been reached by the playback head.

onPeriodicNotification

Added in API level 3
abstract fun onPeriodicNotification(track: AudioTrack!): Unit

Called on the listener to periodically notify it that the playback head has reached a multiple of the notification period.