Skip to content

Instantly share code, notes, and snippets.

@krugloid
Created March 29, 2016 06:15
Show Gist options
  • Save krugloid/78c3894ac671c1a2149a to your computer and use it in GitHub Desktop.
Save krugloid/78c3894ac671c1a2149a to your computer and use it in GitHub Desktop.
@Bind(R.id.tv_clicks) mCounterText;
@OnClick(R.id.btn_increment)
public void onSubmitClicked(View v) {
mClicks++;
mCounterText.setText("" + mClicks);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment