Created
October 6, 2013 07:19
-
-
Save itsff/6850673 to your computer and use it in GitHub Desktop.
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
// During init | |
final MainActivityHelper ui = new MainActivityHelper(this); | |
// ---------------------------------------- | |
// Old usage | |
Button save_button = (Button) findViewById(R.id.save); | |
save_button.setOnClickListener(onSave); | |
// ---------------------------------------- | |
// New usage | |
ui.save_button.setOnClickListener(onSave); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment