LifeCycleEvent

interface LifeCycleEvent: Any

The player class implements this interface

Methods

onActivityCreated

abstract fun onActivityCreated()

The method should be called on player when Activity#onCreate is called

ReturnValue

Name Description
Unit

onActivityStarted

abstract fun onActivityStarted()

The method should be called on player when Activity#onStart() is called

ReturnValue

Name Description
Unit

onActivityResumed

abstract fun onActivityResumed()

The method should be called on player when Activity#onResume() is called

ReturnValue

Name Description
Unit

onActivityPaused

abstract fun onActivityPaused()

The method should be called on player when Activity#onPause() is called

ReturnValue

Name Description
Unit

onActivityStopped

abstract fun onActivityStopped()

The method should be called on player when Activity#onStop() is called

ReturnValue

Name Description
Unit

onActivityDestroyed

abstract fun onActivityDestroyed()

This method should be called when Activity#onDestroy() is called

ReturnValue

Name Description
Unit