本文最后更新于:星期四, 六月 18日 2020, 9:01 上午

谷歌安卓官方文档中文教程:维护兼容性

比如:

  • 如果要保留与早期版本 Android 的兼容性,请您在运行时检查系统,然后再为下列的任何一个功能调用 API:
// Check if we're running on Android 5.0 or higher
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
    // Call some material design APIs here
} else {
    // Implement this feature without material design
}