Skip to content

Instantly share code, notes, and snippets.

@tobrun
Created September 24, 2014 08:14
Show Gist options
  • Save tobrun/5226aa01439974ffcc4d to your computer and use it in GitHub Desktop.
Save tobrun/5226aa01439974ffcc4d to your computer and use it in GitHub Desktop.
Handle Deprecated API Android
int sdk = android.os.Build.VERSION.SDK_INT;
if(sdk < android.os.Build.VERSION_CODES.JELLY_BEAN) {
setBackgroundDrawable();
} else {
setBackground();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment