From that I\'ve read you can assign a onClick handler to a button in two ways.
onClick
Using the android:onClick XML attribute where you just use t
android:onClick
When I saw the top answer, it made me realize that my problem was not putting the parameter (View v) on the fancy method:
public void myFancyMethod(View v) {}
When trying to access it from the xml, one should use
android:onClick="myFancyMethod"/>
Hope that helps someone.