我正在使用MotionLayout在复杂布局(220行代码)中为recyclerview设置动画。布局中有很多视图,我不得不将所有视图约束都写到MotionScene“开始”(否则,布局中的所有内容都弄乱了)。唯一的动画视图是recyclerview,将所有视图约束写入MotionScene对我来说似乎是错误的。有没有办法保持布局的视图约束,例如> motion:deriveConstraintsFrom =“ layout” <,并且仅将动画视图约束添加到MotionScene。
<Constraint android:id="@id/groupSelectionButton">
<Layout
android:layout_width="0dp"
android:layout_height="wrap_content"
motion:layout_constraintLeft_toLeftOf="parent"
motion:layout_constraintRight_toRightOf="parent"
motion:layout_constraintTop_toTopOf="parent"/>
</Constraint>