gpt4 book ai didi

android - 只有第一个转换适用于多状态转换motionlayout

转载 作者:行者123 更新时间:2023-12-04 09:00:41 25 4
gpt4 key购买 nike

我正在测试多状态转换,就像在下面的示例中一样。
https://github.com/googlearchive/android-ConstraintLayoutExamples/blob/multi_state/motionlayout/src/main/res/xml/scene_26.xml
我的布局非常简单。它有一个标题,下面有一个回收站 View 。因此,出于测试目的,我正在尝试执行以下转换。
过渡 1
Header 的大小从 500dp(开始状态)更改为 200dp(中间状态)
过渡 2
Header 将其大小从 200dp(中间状态)更改为 0dp(结束状态)
问题是只有第一次转换发生。我想要的行为是当我滚动列表时 T1 发生并且在它之后 T2 应该发生使标题完全折叠。
请注意 - 我这样做只是为了测试。我有一个动画需要开发,这里使用相同的原则
这是代码
布局

<?xml version="1.0" encoding="utf-8"?>

<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools">

<androidx.constraintlayout.motion.widget.MotionLayout
android:id="@+id/motion_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:showPaths="true"
app:layoutDescription="@xml/scrollable_header_above_recycler_view_scene">

<ImageView
android:id="@+id/header"
android:layout_width="0dp"
android:layout_height="500dp"
android:background="@color/colorPrimary"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:paddingTopSystemWindowInsets="@{true}"
tools:ignore="ContentDescription" />

<androidx.recyclerview.widget.RecyclerView
android:id="@+id/list"
android:layout_width="0dp"
android:layout_height="0dp"
android:clipToPadding="false"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/header"
app:paddingBottomSystemWindowInsets="@{true}" />

</androidx.constraintlayout.motion.widget.MotionLayout>
</layout>
运动布局
<?xml version="1.0" encoding="utf-8"?>
<MotionScene xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:motion="http://schemas.android.com/apk/res-auto">

<Transition
motion:constraintSetStart="@+id/start"
motion:constraintSetEnd="@+id/intermediate"
>
<OnSwipe
motion:onTouchUp="stop"
motion:dragDirection="dragUp"
motion:touchAnchorSide="bottom"
motion:touchAnchorId="@+id/header" />
</Transition>

<Transition
motion:constraintSetStart="@+id/intermediate"
motion:constraintSetEnd="@+id/end"
>
<OnSwipe
motion:onTouchUp="stop"
motion:dragDirection="dragDown"
motion:touchAnchorSide="bottom"
motion:touchAnchorId="@+id/header" />
</Transition>





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


</ConstraintSet>


<ConstraintSet android:id="@+id/intermediate">
<Constraint
android:id="@+id/header"
android:layout_width="match_parent"
android:layout_height="200dp"
motion:layout_constraintEnd_toEndOf="parent"
motion:layout_constraintStart_toStartOf="parent"
/>
</ConstraintSet>


<ConstraintSet android:id="@+id/end">
<Constraint
android:id="@+id/header"
android:layout_width="match_parent"
android:layout_height="0dp"
motion:layout_constraintEnd_toEndOf="parent"
motion:layout_constraintStart_toStartOf="parent"
/>
</ConstraintSet>


</MotionScene>

最佳答案

MotionLayout 不支持 NestedScrollView/RecyclerView 的多状态转换。
它会产生许多极端情况。

关于android - 只有第一个转换适用于多状态转换motionlayout,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63573759/

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