Skip to content

Instantly share code, notes, and snippets.

@esmasui
Created May 27, 2014 17:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save esmasui/3588cd99fea3d910a466 to your computer and use it in GitHub Desktop.
Save esmasui/3588cd99fea3d910a466 to your computer and use it in GitHub Desktop.
//Support inner classes
findViewById(R.id.button).setOnClickListener(new View.OnClickListener() {
@Override
@SendEvent(category = "button", action = "click")
public void onClick(View v) {
onButtonClicked();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment