Android imagebutton click event in xml
i Define the image button as follows:
<ImageButton android:src="@raw/blaimage" />
Now how can I determine which method should be called when the button is clicked.
the android documentation says you can use onClick, but it doesn't seem to compile for me.
android:onClick="selfDestruct"
and in activity I have:
public void selfDestruct(View view) {
// Kabloey
}
http://developer.android.com/reference/android/widget/Button.html
+3