Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
文档说支持库有助于将新功能向后移植到旧版本。如果我正在开发一个专为 Android 4+ 设备设计的新应用程序,我应该使用它吗?
在以下情况下,您可以使用 Android 支持包:
您正在使用仅在 Android 支持包中的内容,例如ViewPager,或
ViewPager
Android 支持包包含您需要的东西的反向移植
对于“仅为 Android 4+ 设备设计的应用程序”,我能想到的唯一反向移植是在需要嵌套片段时使用片段反向移植。如果您不需要嵌套 Fragment,API Level 11+ 中的原生版本 Fragment 将为您工作,无需 Android Support 包。