recyclerview 可以在 android 设备上使用 Jellybean 吗?

Would recyclerview work on an android device with Jellybean?

为了显示项目列表,我在我的应用程序中使用了最新的 RecyclerView。 我想知道它只适用于 android 5.0 的设备还是适用于较低版本的设备?

是的,它是向后兼容的,假设您在应用程序的 build.gradle 文件中包含 RecyclerView v7 的支持库:

Make sure you have downloaded the Android Support Repository using the SDK Manager.

  1. Open the build.gradle file for your application.

  2. Add the support library feature project identifier to the dependencies section just like this:

dependencies {
     ...
     compile "com.android.support:recyclerview-v7:21.0.0.+" 
}

低至 Android 2.1(API 7 级),因此得名 v7