jookyboi
2/10/2013 - 1:44 PM

Simple Android onClick()

Simple Android onClick()

public void onClick(View v) {
	if (v.getId() == R.id.Button01) {	// if you pressed the 'Button01'
		finish();						// finish this Activity
	}
}