I\'m just starting to play with MotionLayout. I have defined an activity layout using MotionLayout that uses a MotionScene to hide and sh
MotionLayout
MotionScene
I just used this hack: click is handled programmatically, but it triggers the hidden view, on which is registered in MotionScene:
actualVisibleView.setOnClickListener { doSomeLogic() hiddenView.performClick() }
And in MotionScene: