gpt4 book ai didi

android - MotionLayout 和 ConstraintLayout 不围绕 child 高度设置动画

转载 作者:塔克拉玛干 更新时间:2023-11-02 07:49:38 24 4
gpt4 key购买 nike

在 RecyclerView 中使用 MotionLayouts 时,我注意到如果它们的高度发生变化,MotionLayouts 不会为环绕它们的 child 设置动画。

重现该行为的一种简单方法是使用以下布局:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.constraint.motion.MotionLayout
android:id="@+id/motion_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/colorPrimary"
app:layoutDescription="@xml/scene">

<View
android:id="@+id/child"
android:layout_width="0dp"
android:layout_height="200dp"
android:background="@color/colorAccent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"/>

</android.support.constraint.motion.MotionLayout>

</FrameLayout>

以及与 OnClick 触发器关联的 MotionScene :

<MotionScene xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:motion="http://schemas.android.com/apk/res-auto">

<Transition
motion:constraintSetEnd="@id/end"
motion:constraintSetStart="@id/start"
motion:duration="1000">

<OnClick
motion:target="@id/child"
motion:mode="toggle"/>

</Transition>

<ConstraintSet android:id="@+id/start">

<Constraint
android:id="@id/child"
android:layout_height="200dp"/>

</ConstraintSet>

<ConstraintSet android:id="@+id/end">

<Constraint
android:id="@id/child"
android:layout_height="400dp"/>

</ConstraintSet>

</MotionScene>

这将给出以下结果:

Behaviour demonstration

如您所见,一旦过渡开始,MotionLayout 的高度就会设置为最终的预期高度,使其蓝色背景可见,直到 subview 完成其自身的高度过渡并与它完全重叠。

如果您尝试实现展开的项目动画,RecyclerView 中也会发生同样的事情。

是否有一种方法可以使 MotionLayout 在过渡期间恰好适合其子项的高度,或者这是否太划算了?

最佳答案

避免调整 MotionLayout 的边界大小。取而代之的是,将其变大并仅对子对象的大小进行动画处理。您可以使空白区域透明并将触摸事件传递给底层 View 。

来源和例子: https://medium.com/vrt-digital-studio/picture-in-picture-video-overlay-with-motionlayout-a9404663b9e7

关于android - MotionLayout 和 ConstraintLayout 不围绕 child 高度设置动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51972760/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com