带有底部工作表的 Motionlayout 无法按预期工作

Posted

技术标签:

【中文标题】带有底部工作表的 Motionlayout 无法按预期工作【英文标题】:Motionlayout with bottom sheet dosn't work as expected 【发布时间】:2021-12-19 02:56:03 【问题描述】:

我正在尝试从 this tutorial 实现此动画,但本教程与回收器视图的不同之处在于我想通过底部表单实现它

这是我正在做的事情的布局

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.motion.widget.MotionLayout 
 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"
 android:layout_
 android:layout_
 app:layoutDescription="@xml/activity_main_scene"
 tools:context=".MainActivity">

<ImageView
    android:id="@+id/imageViewAvatar"
    android:layout_
    android:layout_
    android:layout_marginStart="16dp"
    android:layout_marginTop="16dp"
    android:src="@drawable/ic_baseline_add_reaction_24"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent" />

<androidx.coordinatorlayout.widget.CoordinatorLayout
    android:id="@+id/coordinatorLayout2"
    android:layout_
    android:layout_
    app:layout_constraintBottom_toBottomOf="parent"
    tools:layout_editor_absoluteX="0dp">

    <androidx.appcompat.widget.LinearLayoutCompat
        android:id="@+id/bottomSheet"
        android:layout_
        android:layout_
        android:layout_alignParentBottom="true"
        android:background="@drawable/bottom_view_bg"
        android:orientation="vertical"
        app:behavior_hideable="false"
        app:behavior_peekHeight="90dp"
        app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior">

        <View
            android:layout_
            android:layout_
            android:layout_gravity="center"
            android:layout_marginTop="16dp"
            android:background="@color/white" />

        <androidx.recyclerview.widget.RecyclerView
            android:id="@+id/rvHorzinatal"
            android:layout_
            android:layout_
            tools:listitem="@layout/item_rv" />

        <TextView
            android:layout_
            android:layout_
            android:layout_marginStart="16dp"
            android:layout_marginTop="24dp"
            android:layout_marginEnd="16dp"
            android:text="Swipe Up"
            android:textColor="@color/black"
            android:textSize="18sp"
            android:textStyle="bold" />

        <androidx.recyclerview.widget.RecyclerView
            android:id="@+id/rv"
            android:layout_
            android:layout_
            app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
            tools:listitem="@layout/item_rv" />

    </androidx.appcompat.widget.LinearLayoutCompat>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
</androidx.constraintlayout.motion.widget.MotionLayout>

这是我的场景布局

<?xml version="1.0" encoding="utf-8"?>
<MotionScene xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:motion="http://schemas.android.com/apk/res-auto">

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

    <OnSwipe
        app:dragDirection="dragUp"
        app:touchAnchorId="@+id/bottomSheet"
        app:touchAnchorSide="top" />
    <KeyFrameSet />
</Transition>

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

<ConstraintSet android:id="@+id/end">
    <Constraint
        android:id="@id/imageViewAvatar"
        android:layout_
        android:layout_
        android:layout_marginStart="16dp"
        android:layout_marginTop="16dp"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent">

    </Constraint>
</ConstraintSet>

但是每当我将 Onswipe 放在坐标布局或其中的约束上时,它都不起作用我该如何解决这个问题?

【问题讨论】:

【参考方案1】:

CoordinatorLayout 是一个与 NestedScrollview(RecyclerView) 相关的用于动画视图运动的系统 MotionLayout 可以用于同样的事情。

你有两个选择:

仅使用一个 - MotionLayout 更灵活一些,CoordnatorLayout 提供标准交互。 将 MotionLayout 设为子级以仅对顶部面板进行动画处理。 CoordnatorLayout 做整体动画。

here 都有一些例子

【讨论】:

以上是关于带有底部工作表的 Motionlayout 无法按预期工作的主要内容,如果未能解决你的问题,请参考以下文章

带有导航器的颤振模态底部工作表未按预期弹出

带有 MotionLayout 的 Android 折叠工具栏 - 当 RecyclerView 为空/不可滚动时禁用运动

更改 Android Motion Layout 中的内容后如何使“wrap_content”工作?

MotionLayout的高级玩法

带有表单 POST 按钮的 Bootstrap 4 卡片 - 无法与卡片底部对齐

MotionLayout中的TextView在大小动画上闪烁