为什么 Honeycomb 中引入的 API 可以在 Gingerbread 上运行?
在 DatabaseUtils.concatenateWhere(...) 的文档指出它从 API 级别 11+ (HONEYCOMB) 开始受支持。然而,在测试各种设备上的兼容性时,在我的 Droid X 上运行 Cyanogenmod 7 nightly build 98(基于gingerbread 2.3.5),方法调用不仅不会导致崩溃,而且按预期工作。
这是否与我的自定义 ROM 不一致,或者其他人可以在运行 Gingerbread 或更低版本的另一台设备上重现此功能吗?这可能是 SDK 文档中的错误吗?
In the documentation for DatabaseUtils.concatenateWhere(...) it is stated that it is supported from API level 11+ (HONEYCOMB). However, while testing compatibility on various devices, that on my Droid X running Cyanogenmod 7 nightly build 98 (based on gingerbread 2.3.5), the method call not only does not cause a crash, but works as expected.
Is this some inconsistency with my custom ROM, or can anyone else reproduce this functionality on another device that is running Gingerbread or lower? Could this be an error in the SDK documentation?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它看起来像是文档中的错误。
GrepCode 显示该方法 存在于 Android 中2.3.4_r1。
事实上,该方法存在于所有版本中,包括 1.5_r4。
It looks like an error in the documentation.
GrepCode shows that the method exists in Android 2.3.4_r1.
In fact, the method exists in all versions including 1.5_r4.
嗯,Android 2.3.5是在Honeycomb之后发布的。我认为 Google 可能已经实现了 Honeycomb 的某些 API 来帮助对抗碎片化,这并非不合理。不过,如果没有经过彻底的测试,我不会指望它能在其他版本的 Gingerbread 中工作。
Well, Android 2.3.5 was released after Honeycomb. I don't find it unreasonable that Google might have implemented certain APIs from Honeycomb to help fight fragmentation. I wouldn't count on it working in other versions of Gingerbread though, without thorough testing.