当我将ItemTouchHelper附加到主Recycler时,尝试使嵌套的recyclerView滚动

问题描述

https://streamable.com/2eml8r

您可以在视频中看到它。 我找不到一种方法拦截进入itemtouchhelper的输入触摸事件

class SwipetoDelete(var thoughtsAdapter: ThoughtsAdapter) : itemtouchhelper.SimpleCallback(0,` 
itemtouchhelper.LEFT) {
override fun onMove(
    recyclerView: RecyclerView,viewHolder: RecyclerView.ViewHolder,target: RecyclerView.ViewHolder
): Boolean {
    Todo("Not yet implemented")
}
   

 override fun onSwiped(viewHolder: RecyclerView.ViewHolder,direction: Int) {
        var adapterListPosition = viewHolder.adapterPosition
        thoughtsAdapter.deleteItem(adapterListPosition)
    }

}
class SwipetoSpread(var thoughtsAdapter: ThoughtsAdapter,val sharedviewmodel: Sharedviewmodel) : 
itemtouchhelper.SimpleCallback(0,itemtouchhelper.RIGHT) {
    override fun onMove(recyclerView: RecyclerView,target: 
RecyclerView.ViewHolder): Boolean {
        Todo("Not yet implemented")
    }

override fun onSwiped(viewHolder: RecyclerView.ViewHolder,direction: Int) {
    var adapterListPosition = viewHolder.adapterPosition
    //TabButton.currentlyActive.value = sharedviewmodel.spreadTabButton
    sharedviewmodel.thoughtsTabButton.performClick()
}
}

侧卷式回收机嵌套的外部回收机项目

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

<data>
    <variable
        name="thought"
        type="seri.dnair.items.Thought"/>

    <variable
        name="clickThought"
        type="seri.dnair.adapter_tabs.ThoughtsClickListener" />

</data>

<androidx.constraintlayout.widget.ConstraintLayout
    android:id="@+id/thought_background"
    android:layout_width="match_parent"
    android:layout_height="220dp"
    android:background="#FFFFFF"
    android:onClick="@{() -> clickThought.onClick(thought)}">

    <seri.dnair.utils.OrientationAwareRecyclerView
        android:id="@+id/subStrainRecycler"
        android:layout_width="match_parent"
        android:layout_height="55dp"
        android:animationCache="false"
        android:background="@drawable/thoughtgreenbg"
        android:clickable="true"
        android:scrollbars="horizontal"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />


    <ImageView
        android:id="@+id/thoughtDivider"
        android:layout_width="417dp"
        android:layout_height="6dp"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:srcCompat="@drawable/dividerbar" />

    <EditText
        android:id="@+id/thought_content"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:layout_gravity="center|left"
        android:background="@android:color/transparent"
        android:fontFamily="@font/roboto"
        android:gravity="start"
        android:paddingLeft="8dp"
        android:paddingEnd="2dp"
        android:paddingRight="4dp"
        android:singleLine="false"
        android:textColor="#000000"
        android:textSize="14sp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.0"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/subStrainRecycler"
        app:layout_constraintVertical_bias="0.0"
        app:thoughtContent="@{thought}" />

    <ImageView
        android:id="@+id/brainButton"
        android:layout_width="40dp"
        android:layout_height="40dp"
        android:layout_marginEnd="2dp"
        android:layout_marginBottom="8dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:srcCompat="@drawable/brainbutton" />

 </androidx.constraintlayout.widget.ConstraintLayout>
</layout>

片段的片段,发生在以下位置:

    // FUNCTION values for the adapter
    val selectStrain = StrainsClickListener { strain -> thoughtsviewmodel.selectStrain(strain)}
    val thoughtsAdapter = ThoughtsAdapter(thoughtsviewmodel,thoughtsviewmodel.selectednote,clickSelectThought,clickSubStrainListener,imm,userDatabaseDao)
    val thoughtStrainAdapter = ThoughtStrainsAdapter(selectStrain,thoughtsviewmodel.activeStrain,thoughtsviewmodel,imm)

    // Function passed to the itemtouchhelper to tell it what to do on swipe left
    val itemSwipeLeftThoughtHelper = itemtouchhelper(SwipetoDelete(thoughtsAdapter))
    // attached the itemtouchhelper that is responsible for swipe left delete to the thoughtsAdapter
    itemSwipeLeftThoughtHelper.attachToRecyclerView(binding.thoughtsRecycler)

    // Swipe Right attached to the thoughtsRecycler to go to spread
    val itemSwipeRightThoughtHelper = itemtouchhelper(SwipetoSpread(thoughtsAdapter,sharedviewmodel))
    itemSwipeRightThoughtHelper.attachToRecyclerView(binding.thoughtsRecycler)

    binding.sharedviewmodel = sharedviewmodel
    binding.lifecycleOwner = viewLifecycleOwner
    binding.thoughtsviewmodel = thoughtsviewmodel
    binding.thoughtsRecycler.adapter = thoughtsAdapter
    binding.strainsBar.adapter = thoughtStrainAdapter

外部回收站的适配器类内部的片段

   val layoutManager = linearlayoutmanager(thoughtHolder.itemView.context,linearlayoutmanager.HORIZONTAL,false )
        val subStrainRecycler = thoughtHolder.itemView.findViewById<RecyclerView> 
   (R.id.subStrainRecycler)
        val editButton = thoughtHolder.itemView.findViewById<ImageView>(R.id.brainButton)
        val thoughtContent = thoughtHolder.itemView.findViewById<EditText>(R.id.thought_content)
        editButton.setonClickListener { thoughtsviewmodel.changeScreenFromBtn()}

        val subStrainsAdapter = SubStrainsAdapter(thoughtsviewmodel,clickSubStrain,thoughtItem.id,thoughtItem.strainName)
        subStrainRecycler.adapter = subStrainsAdapter
        subStrainRecycler.layoutManager = layoutManager
        subStrainsAdapter.addHeaderAndSubmitList(null)

自定义回收器类,我只是在搜索解决方案中复制并粘贴了代码https://pastebin.com/cywUWRZG

不起作用,但也没有造成任何伤害

我真的希望这个工作。 id重做整个事情

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)