Skip to content

Instantly share code, notes, and snippets.

@gamgoon
Last active December 5, 2017 16:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gamgoon/c2cc4ded47a31ae2fd73078e565f831a to your computer and use it in GitHub Desktop.
Save gamgoon/c2cc4ded47a31ae2fd73078e565f831a to your computer and use it in GitHub Desktop.
Button buttonRed = (Button) findViewById(R.id.buttonRed) ;
buttonRed.setOnClickListener(new Button.OnClickListener() {
@Override
public void onClick(View view) {
textView1.setText("Red") ;
textView1.setBackgroundColor(Color.rgb(255, 0, 0));
}
}) ;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment