In Transition when Fragment Shared Element Transitions happen sometimes captureEndValues does not get called and endValues return null?
问题 I wrote a transtion that extends androidx.transition.Transtion which rotates view from start value to end value, this just an example it happens with other classes that extends Transition. It works fine if i use TransitionManager.beginDelayedTransition() if i use the start and end values as arguments instead of endTransitionValues. class CustomRotationTransition : Transition { private var startRotation: Float = 0f private var endRotation: Float = 0f var forceValues: Boolean = false