Created
December 4, 2018 04:46
-
-
Save mehmetbalbay/5a1bab729102d2907c4642af5630eeb4 to your computer and use it in GitHub Desktop.
handler class
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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