Camera Animations Lifecycle Listener
Interface responsible to notify about any CameraAnimator lifecycle events registered in CameraAnimationsPlugin. Those events are:
animator is about to start
animator is about to cancel already running animator of same type
animator is about to end
animator is about to cancel
interface CameraAnimationsLifecycleListener
Content copied to clipboard
Functions
equals
Link copied to clipboard
onAnimatorCancelling
Link copied to clipboard
abstract fun onAnimatorCancelling(type: CameraAnimatorType, animator: ValueAnimator, owner: String?)
Content copied to clipboard
onAnimatorEnding
Link copied to clipboard
abstract fun onAnimatorEnding(type: CameraAnimatorType, animator: ValueAnimator, owner: String?)
Content copied to clipboard
onAnimatorInterrupting
Link copied to clipboard
abstract fun onAnimatorInterrupting(type: CameraAnimatorType, runningAnimator: ValueAnimator, runningAnimatorOwner: String?, newAnimator: ValueAnimator, newAnimatorOwner: String?)
Content copied to clipboard
onAnimatorStarting
Link copied to clipboard
abstract fun onAnimatorStarting(type: CameraAnimatorType, animator: ValueAnimator, owner: String?)
Content copied to clipboard