gpt4 book ai didi

android - ReToucherView的onTouchListener已禁用其滚动

转载 作者:行者123 更新时间:2023-12-02 13:08:52 25 4
gpt4 key购买 nike

我有一个水平滚动的recyclerView,当在任何地方触摸recyclerView时,都会出现下拉菜单。我尝试了许多方法,例如onclick,但没有用。唯一有效的方法是onTouchListener,但是在实现滚动不起作用之后。

这是recyclerView代码

<android.support.v7.widget.RecyclerView
android:id="@+id/rv_selected_groups"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginBottom="16dp"
android:layout_marginStart="16dp"
android:clickable="true"
android:layout_marginTop="0dp"
android:orientation="horizontal"
android:paddingLeft="16dp"
android:paddingRight="16dp"
android:paddingBottom="8dp"
android:paddingTop="8dp"
app:layoutManager="android.support.v7.widget.LinearLayoutManager"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toLeftOf="@id/iv_dropdown"
app:layout_constraintTop_toBottomOf="@id/tv_select_group"
android:focusable="true" />

这是使用的onTouchListener的代码
 mRecyclerViewSeletedGroups.setOnTouchListener(View.OnTouchListener { view, motionEvent ->
when (motionEvent.action){
MotionEvent.ACTION_UP -> {
dropdownFlag = !dropdownFlag
mPresenterImpl.onDropdownClicked(dropdownFlag)
}
}
return@OnTouchListener true
})

因此,当我尝试使用onclick而不是onTouch时,它不起作用。

我想实现该onTouch以及滚动功能。

我该如何解决?

最佳答案

问题在于您:

return@OnTouchListener true

如果您始终返回true,则表示:

True if the listener has consumed the event, false otherwise.



如果您始终使用该事件,则滚动将不起作用。您需要检查逻辑,以便仅在需要时才返回 true

关于android - ReToucherView的onTouchListener已禁用其滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53123882/

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