VisibilityPropagation
abstract class VisibilityPropagation : TransitionPropagation
Known Direct Subclasses
CircularPropagation |
A propagation that varies with the distance to the epicenter of the Transition or center of the scene if no epicenter exists.
|
SidePropagation |
A TransitionPropagation that propagates based on the distance to the side and, orthogonally, the distance to epicenter.
|
|
Base class for TransitionPropagation
s that care about View Visibility and the center position of the View.
Summary
Public constructors |
Base class for TransitionPropagation s that care about View Visibility and the center position of the View.
|
Public methods |
open Unit |
|
open Array<String!>! |
|
open Int |
Returns android.view.View#getVisibility() for the View at the time the values were captured.
|
open Int |
Returns the View's center x coordinate, relative to the screen, at the time the values were captured.
|
open Int |
Returns the View's center y coordinate, relative to the screen, at the time the values were captured.
|
Public constructors
<init>
VisibilityPropagation()
Base class for TransitionPropagation
s that care about View Visibility and the center position of the View.
Public methods
getPropagationProperties
open fun getPropagationProperties(): Array<String!>!
getViewX
open fun getViewX(values: TransitionValues!): Int
Returns the View's center x coordinate, relative to the screen, at the time the values were captured.
Parameters |
values |
TransitionValues!: The TransitionValues captured at the start or end of the Transition. |
Return |
Int |
the View's center x coordinate, relative to the screen, at the time the values were captured. |
getViewY
open fun getViewY(values: TransitionValues!): Int
Returns the View's center y coordinate, relative to the screen, at the time the values were captured.
Parameters |
values |
TransitionValues!: The TransitionValues captured at the start or end of the Transition. |
Return |
Int |
the View's center y coordinate, relative to the screen, at the time the values were captured. |