You are on page 1of 1

ImageButton

Catch click event


#xml
<ImageButton
android:id="@+id/imageButton1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="155dp"
android:src="@drawable/ic_launcher" />
#import
import android.view.View.OnClickListener;
import android.widget.ImageButton;
#onCreate/Anywhere
ImageButton IB = (ImageButton)findViewById(R.id.imageButton1);
IB.setOnClickListener(new OnClickListener(){
@Override
public void onClick(View v) {
}
});
#end

You might also like