gpt4 book ai didi

android - 以编程方式更改 MotionLayout 运动场景中的 ConstraintSet 属性

转载 作者:太空宇宙 更新时间:2023-11-03 12:13:58 26 4
gpt4 key购买 nike

我有一个用例,我想使用 MotionLayout 创建类似 Youtube 的动画。 this 中有此动画的示例 repo 。但问题是,在这个例子中,他们使用静态高度作为起始约束,如下所示,即 320dp:

<MotionScene...>

<Transition..>

<OnSwipe... />

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

<Constraint
android:id="@id/top_image_container"
android:layout_width="0dp"
android:layout_height="320dp"
motion:layout_constraintTop_toTopOf="parent"
motion:layout_constraintStart_toStartOf="parent"
motion:layout_constraintEnd_toEndOf="parent" />

</ConstraintSet>
</Transition>
</MotionScene>

但我要求使用宽高比设置约束。对于静态宽高比,我可以像这样在 Constraint 中使用 app:layout_constraintDimensionRatio="w,16:9" 进行设置。

<Constraint
android:id="@id/top_image_container"
android:layout_width="0dp"
android:layout_height="0dp"
motion:layout_constraintTop_toTopOf="w,16:9"
motion:layout_constraintTop_toTopOf="parent"
motion:layout_constraintStart_toStartOf="parent"
motion:layout_constraintEnd_toEndOf="parent" />

但是每个视频都有不同的纵横比,我从 API 获得了这些纵横比。所以我想根据视频设置不同的纵横比。我无法在 ConstraintSet

中找到以编程方式设置它的方法

我尝试了一种解决方法来设置 android:layout_height="wrap_content" 并以编程方式更改 View 纵横比。但它没有用,动画也没有正常工作。

如有任何解决方案或建议,我们将不胜感激。

最佳答案

您可以做的是访问 ConstraintSet,然后设置比率:

motionLayout.getConstraintSet(R.id.start)?.let { startConstraintSet ->
val ratio = imageView.calculateRatio()
startConstraintSet.setDimensionRatio(R.id.top_image_container, ratio)
// You can set the width and height here as well
}

关于android - 以编程方式更改 MotionLayout 运动场景中的 ConstraintSet 属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54878343/

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