【发布时间】:2015-01-07 06:09:57
【问题描述】:
我想在我的 Android 应用中使用 RecyclerView。以下是属性:
minSdkVersion="14" (ICS)
compile sdk version="21" (L)
Target sdk version="14" (ICS)
我在 build.gradle 文件的依赖项下添加了compile 'com.android.support:appcompat-v7:21.0.3'。
当我在 XML 中添加 RecyclerView 时,出现以下错误:
The following classes could not be found:
- android.support.v7.widget.RecyclerView (Fix Build Path, Create Class)
XML 代码:
<android.support.v7.widget.RecyclerView
android:id="@+id/my_recycler_view"
android:scrollbars="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
我希望应用程序在 ICS 之上的所有设备上运行。请帮我解决这个问题。
【问题讨论】:
标签: android android-5.0-lollipop android-recyclerview