This has been addressed in many posts on StackOverflow. The most recommended solution is to set:
android:descendantFocusability=\"blocksDescendants\"
Have you tried adding android:clickable="false" for the buttons? I just ran into a similar issue and that fixed it for me, whereas using android:focusable="false" did not.
Good luck!