Skip to content

Instantly share code, notes, and snippets.

@itsff
Created October 6, 2013 07:19
Show Gist options
  • Save itsff/6850673 to your computer and use it in GitHub Desktop.
Save itsff/6850673 to your computer and use it in GitHub Desktop.
// 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