Skip to content

Instantly share code, notes, and snippets.

@mehmetbalbay
Created December 4, 2018 04:46
Show Gist options
  • Save mehmetbalbay/5a1bab729102d2907c4642af5630eeb4 to your computer and use it in GitHub Desktop.
Save mehmetbalbay/5a1bab729102d2907c4642af5630eeb4 to your computer and use it in GitHub Desktop.
handler class
private MyClickHandlers handlers;
handlers = new MyClickHandlers(this);
public class MyClickHandlers {
Context context;
public MyClickHandlers (Context context) {
this.context = context;
}
public void onProfileFabClicked(View view) {
// Layout’a tanımladığımız click bind’ine verdiğimiz method
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment