Skip to content

Instantly share code, notes, and snippets.

@mortenjust
Created September 24, 2015 00:03
Show Gist options
  • Select an option

  • Save mortenjust/0c6b896a606cafa8f0e5 to your computer and use it in GitHub Desktop.

Select an option

Save mortenjust/0c6b896a606cafa8f0e5 to your computer and use it in GitHub Desktop.
Finding out if an object can be casted to a certain class
if(((ImageView) view).getDrawable() instanceof StateListDrawable){
Log.d(TAG, "It totally is a statelister");
} else {
Log.d(TAG, "It's not a statelist");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment