如何根据 MotionLayout 中的方向更改过渡值?

How to change transition values according to orientation in a MotionLayout?

我创建了一个将视图从全屏调整为半屏的场景。它适用于纵向模式,但 layout_height 值不足以用于横向模式。有没有办法根据特定方向在 XML 场景文件中设置不同的 属性 值?如果不是,我是否必须以编程方式更改它以及如何更改?

<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="500">
   <KeyFrameSet>
   </KeyFrameSet>
</Transition>

<ConstraintSet android:id="@+id/start">
    <Constraint
        android:id="@+id/content_parent"
        motion:layout_constraintEnd_toEndOf="parent"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        motion:layout_constraintTop_toTopOf="parent"
        motion:layout_constraintStart_toStartOf="parent" />
</ConstraintSet>

<ConstraintSet android:id="@+id/end">
    <Constraint
        android:id="@+id/content_parent"
        motion:layout_constraintEnd_toEndOf="parent"
        android:layout_width="match_parent"
        android:layout_height="@dimen/section_height"
        motion:layout_constraintTop_toTopOf="parent"
        motion:layout_constraintStart_toStartOf="parent" />

</ConstraintSet>

更新@ivan-wooll 这是我的做法:

//dimens.xml
<dimen name="section_height" tools:ignore="ResourceCycle">@dimen/section_height</dimen>

//dimens.xml(port)
<dimen name="section_height">280dp</dimen>

//dimens.xml(land)
<dimen name="section_height">60dp</dimen>

将您的身高值提取到尺寸资源。 创建 res/values-portres/values-land 目录,并在每个目录中添加一个 dimens.xml 文件,其中包含每个方向的维度资源。

我终于用 XML(@ivan-wooll 建议,竖起大拇指)和 Kotlin 代码(我的)解决了我的问题

override fun onConfigurationChanged(newConfig: Configuration) {
    super.onConfigurationChanged(newConfig)
    val csEnd = binding.motionLayoutVideo.getConstraintSet(R.id.end)
    var consHeight= resources.getDimensionPixelSize(R.dimen.section_height)
    csEnd.apply {
       constrainHeight(R.id.content_parent, consHeight)
    }
}