Skip to content

Instantly share code, notes, and snippets.

@jmrboosties
Created September 27, 2016 18:51
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 jmrboosties/6e49de89d2dca71322ecd2b81a76e892 to your computer and use it in GitHub Desktop.
Save jmrboosties/6e49de89d2dca71322ecd2b81a76e892 to your computer and use it in GitHub Desktop.
final View bar = findViewById(R.id.bar);
bar.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Print.log("click bar");
bar.getLayoutParams().height = 200;
bar.invalidate();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment