看起来将RecyclerView的项目布局设置为clickable =“true”,完全消耗一些触摸事件,特别是MotionEvent.ACTION_DOWN
(之后ACTION_MOVE和ACTION_UP正在工作):
item.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/demo_item_container"
android:layout_width="match_parent"
android:layout_height="?android:attr/listPreferredItemHeight"
android:background="?android:attr/selectableItemBackground"
android:clickable="true"> <-- this what breaks touch event ACTION_DOWN
....
</LinearLayout>
在onCreate()中设置了非常基本的RecyclerView:
RecyclerView recyclerView = (RecyclerView) findViewById(R.id.list);
... //Standard recyclerView init stuff
//Please note that this is NOT recyclerView.addOnItemTouchListener()
recyclerView.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View view, MotionEvent motionEvent) {
Log.d("", "TOUCH --- " + motionEvent.getActionMasked());
//Will never get here ACTION_DOWN when item set to android:clickable="true"
return false;
}
});
这是在RecyclerView中的预期行为或错误导致它仍然是预览吗?
PS。我希望这可以按照文档进行点击,以对按下状态做出反应并对点击产生连锁反应。当设置为false时,ACTION_DOWN正常工作但未触发按下状态且selectableBackground没有任何效果。
答案 0 :(得分:0)
这是预期的行为而不是错误。
当set item clickable为true时,将使用ACTION_DOWN,recycleler view 永远不会得到ACTION_DOWN。
为什么在recycler视图的onTouch()中需要ACTION_DOWN?有必要吗? 如果你想在ACTION_DOWN中设置lastY,为什么不在这个
case MotionEvent.ACTION_MOVE:
if (linearLayoutManager.findFirstCompletelyVisibleItemPosition() == 0) {
// initial
if (lastY == -1)
lastY = y;
float dy = y - lastY;
// use dy to do your work
lastY = y;
break;
case:MotionEvent.ACTION_UP:
// reset
lastY = -1;
break;
你想要吗?如果您仍然需要ACTION_DOWN,请尝试将其置于活动中,例如:
public boolean dispatchTouchEvent(MotionEvent ev) {
if (ev.getAction() == MotionEvent.ACTION_DOWN)
lastY = ev.getRawY();
return super.dispatchTouchEvent(ev);