Based on previous experience, the child control was thought to intercept the Click event of the parent control because it had been seen a long while ago:
If your custom ListViewItem has a button or checkable child control, then the default focus is given to the child control, and the ListView item can be selected based on its ability to get focus, This means that we can set the Focusable property of all the controls contained in the ListView to False, so that the ListView item automatically gets the focus permission and can be selected. It will also respond to the Onitemclick () method in Onitemclicklistener, but setting the child control Focusable property of the ListView item layout to False is a bit cumbersome and we can pass the item Layout's root control sets its android:descendantfocusability= "Blocksdescendant".
Android Abslistview Item Click event Non-responsive processing mode