Dispatch click to ListView when activity implements OnTOuchListener
问题 My activity implements OnTouchListener and it have one ListView inside it. When user touch over ListView, I need to dispatch ClickEvent to ListView that has OnItemClickListener handler. How can I do this? edit: Each list item of listView have onTouchEvent handler. ListView have onItemClick handler. @Override public boolean onTouch(View view, MotionEvent event) { float actionUpX; switch(event.getAction()){ case MotionEvent.ACTION_DOWN: actionDownX = event.getX(); break; case MotionEvent.ACTION