I find myself doing things like this all the time:
Button button1 = (Button) findViewById(R.id.button1); Button button2 = (Button) findViewById(R.id.
You can also set it in your layout xml using the android:onclick attribute.
android:onClick="onClick"
Then in your activity class add the onClick method.
public void onClick(View v) { ...
Here's the documentation.