Created
April 15, 2016 09:53
-
-
Save shau-lok/cc99eda0ee8e7efa0ad5a36be45d90d6 to your computer and use it in GitHub Desktop.
Android version compare 版本比较
This file contains hidden or 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
if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN){ | |
setBackground(states); | |
}else{ | |
setBackgroundDrawable(states); | |
} | |
// 查看SDK_INT对应的版本号 | |
// https://developer.android.com/guide/topics/manifest/uses-sdk-element.html |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment