Skip to content

Instantly share code, notes, and snippets.

@javikin
Last active November 30, 2017 05:40
Show Gist options
  • Save javikin/6c85c96737dcc9051838ed9276e01e6f to your computer and use it in GitHub Desktop.
Save javikin/6c85c96737dcc9051838ed9276e01e6f to your computer and use it in GitHub Desktop.
public class MainActivity extends Activity implements OnClickListener {
...
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
...
button.setOnClickListener(this);
}
public void onClick(View v) {
Toast.makeText(v.getContext(), "Click", Toast.LENGTH_SHORT).show();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment