我已经开始将运动布局用于顶部栏的滚动,并且看起来存在一个问题,该问题阻止了回收站视图显示更新的数据。目前,我正在使用2.0.0-alpha3
中的ConstraintLayout
。在视图中,我有工具栏和2个用作过滤器的标签,可以说filterX
和filterY
传递了一些rx内容,这些内容基本上只是基于type
过滤项目列表,这不是这很重要,因为数据已正确过滤,线程正确,每次都会将数据传递到适配器,但是当我将运动布局滚动到顶部或底部时,更改有时不反映在回收者视图中,因此在我滚动后会重新加载甚至没有触碰,在标准ConstraitLayout
的情况下不会发生。有没有人经历过这个并且知道任何解决方案?
编辑:带运动布局的布局:
<androidx.constraintlayout.motion.widget.MotionLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layoutDescription="@xml/scene_month">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:navigationIcon="@drawable/ic_back"/>
<TextView
android:id="@+id/title"
style="@style/ActivityTitle"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/toolbar" />
<com.example.FilterView
android:id='@+id/filter_view'
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/white"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/title"/>
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recycler"
android:layout_width="0dp"
android:layout_height="0dp"
android:clipToPadding="false"
android:paddingBottom="16dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/filter_view" />
</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">
<Transition
app:constraintSetEnd="@id/end"
app:constraintSetStart="@id/start">
<OnSwipe
app:dragDirection="dragUp"
app:touchAnchorId="@id/recycler"
app:touchAnchorSide="top" />
</Transition>
<ConstraintSet android:id="@+id/start">
<Constraint android:id="@id/title"
android:text="@string/title"
android:layout_width="match_parent"
android:layout_height="48dp"
android:gravity="center_vertical"
android:textSize="28sp"
android:textColor="@color/dark_gray"
android:fontFamily="@font/rubik_medium"
android:layout_marginStart="16dp"
android:layout_marginEnd="16dp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/toolbar">
<CustomAttribute
app:attributeName="textSize"
app:customFloatValue="28"/>
</Constraint>
</ConstraintSet>
<ConstraintSet android:id="@+id/end">
<Constraint android:id="@id/title"
android:text="@string/title"
android:layout_width="match_parent"
android:layout_height="?actionBarSize"
android:gravity="center_vertical"
android:minHeight="?actionBarSize"
android:textSize="28sp"
android:textColor="@color/dark_gray"
android:fontFamily="@font/rubik_regular"
android:layout_marginStart="72dp"
android:layout_marginEnd="16dp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<CustomAttribute
app:attributeName="textSize"
app:customFloatValue="20"/>
</Constraint>
</ConstraintSet>
</MotionScene>
答案 0 :(得分:2)
遵循此处讨论的可能解决方案: https://issuetracker.google.com/issues/130386093
将标记motion:layoutDuringTransition =“ honorRequest”添加到Transition中解决了该问题
示例:
<Transition
android:id="@+id/myTransition"
motion:constraintSetEnd="@+id/end"
motion:constraintSetStart="@+id/start"
motion:layoutDuringTransition="honorRequest"
motion:motionInterpolator="linear">
<OnSwipe
motion:dragDirection="dragUp"
motion:onTouchUp="stop"
motion:touchAnchorId="@+id/swipeRefreshLayout"
motion:touchAnchorSide="top" />
除此之外,还可以尝试更新到较新版本,就我而言,我当前正在使用
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-beta08'
implementation 'androidx.recyclerview:recyclerview:1.2.0-alpha05'
注意:layoutDuringTransition标记仅在beta04版本和更高版本的约束布局中可用
答案 1 :(得分:1)
RecyclerView.scrollBy(0, 0)
作为临时解决方法。
链接到这些Google问题跟踪器
答案 2 :(得分:1)
由于某种原因,RecyclerView.scrollBy(0, 0)
对我不起作用。更新recyclerView时,我使用以下方法将整个运动布局滚动到顶部。
motionLayoutView.transitionToStart()
答案 3 :(得分:0)
更新到较新版本
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-beta7'
他们解决了发行说明中列出的问题
https://androidstudio.googleblog.com/2020/06/constraintlayout-200-beta-7.html