Created
August 22, 2015 14:12
-
-
Save goliver79/729fdbc8c955c5814dfb to your computer and use it in GitHub Desktop.
[ANDROID-JAVA] Check view type
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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