gpt4 book ai didi

android - MotionLayout 与 Viewpager 的 Recyclerview

转载 作者:行者123 更新时间:2023-12-05 00:05:15 27 4
gpt4 key购买 nike

我有这样的布局;

<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:id="@+id/motion_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:animateLayoutChanges="true"
android:orientation="vertical"
app:layoutDescription="@xml/motion_layout_details">

<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:background="@color/white"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:navigationIcon="@drawable/ic_back"
app:title="ToolbarTitle" />

<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/image"
android:layout_width="0dp"
android:layout_height="244dp"
android:scaleType="fitXY" />

<com.google.android.material.tabs.TabLayout
android:id="@+id/tl_menu"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:elevation="2dp"
app:tabIndicator="@null"
app:tabMode="scrollable"
app:tabRippleColor="@null" />

<androidx.viewpager.widget.ViewPager
android:id="@+id/vp_menu"
android:layout_width="0dp"
android:layout_height="0dp" />

</androidx.constraintlayout.motion.widget.MotionLayout>

具有包含 recyclerview 的相同 viewpager 项目;

<androidx.constraintlayout.widget.ConstraintLayout 
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_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white"
android:orientation="vertical"
android:paddingTop="@dimen/spacing_16dp">

<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerview"
android:layout_width="0dp"
android:layout_height="0dp"
android:clipToPadding="false"
android:orientation="vertical"
android:paddingBottom="@dimen/spacing_24dp"
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"/>


</androidx.constraintlayout.widget.ConstraintLayout>

我有一个运动场景,向上滚动时会折叠图像(此配置正确)。如果在我的 viewpager 项目中,我将 RecyclerView 包装在一个 nestedscrollview 中,我的过渡 -

   <Transition
app:constraintSetEnd="@+id/end"
app:constraintSetStart="@+id/start"
app:duration="500"
app:motionInterpolator="linear">

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

</Transition>

工作正常,转换如我所料。但是删除嵌套的 ScrollView 根本不再触发运动布局。我已经挖了好几个小时,似乎找不到任何解释。我可以将 nestedscrollview 放回去,但理想情况下我想将其保留下来,因为 A) 不需要它并且 B) 破坏了我正在使用的一些 stickheader 东西。

更新根据我的评论修复此问题。 .isNestedScrollingEnabled = false 停止 recyclerview 与 motionlayout 的通信。

最佳答案

事实证明,当我在 nestedscrollview 中使用我的 recyclerview 时,我有 rv?.isNestedScrollingEnabled = false,它必须停止某种类型的 motionlayout 触发器。删除它已解决问题并适用于上述代码。

关于android - MotionLayout 与 Viewpager 的 Recyclerview,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60353619/

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