兼容问题

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

比如:

  • 如果要保留与早期版本 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
}

你可能感兴趣的:(兼容问题)