Skip to content

Instantly share code, notes, and snippets.

@goliver79
Created August 22, 2015 14:12
Show Gist options
  • Save goliver79/729fdbc8c955c5814dfb to your computer and use it in GitHub Desktop.
Save goliver79/729fdbc8c955c5814dfb to your computer and use it in GitHub Desktop.
[ANDROID-JAVA] Check view type
@Override
public void onClick(View v) {
if ( v instanceof Button ){
String btnText = ((Button) v).getText().toString();
}else if ( v instanceof ListView ) {
// ..
} //..
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment