Skip to content

Instantly share code, notes, and snippets.

@skatldjs
Created September 15, 2010 02:10
Show Gist options
  • Save skatldjs/580131 to your computer and use it in GitHub Desktop.
Save skatldjs/580131 to your computer and use it in GitHub Desktop.
public class Example extends Activity
implements OnClickListener {
protected void onCreate(Bundle savedValues) {
// 구현부분
Button button = (Button)findViewById(R.id.btn);
button.setOnClickListener(this);
}
public void onClick(View v) {
// 구현부분
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment