As I\'m trying to debug my program, I can\'t figure out the error.
I have initialized two buttons and used .setOnClickListener on them. When the user clicks the bu
I had this happen to me on the first click of a CardView inside a RecyclerView. It turns out the CardView XML set:
android:focusable="true" android:focusableInTouchMode="true"
Once I removed that, the first click (and subsequent clicks) worked fine, and I no longer had the error with ACTION_DOWN.