我真的找不到Android支持库中的回收查看器

时间:2016-02-19 14:20:07

标签: android android-library

我想在我的项目中使用RecyclerView,但我无法导入它。 我加入了gradle:

在我的项目中编译'com.android.support:design:22.2.1'

我该怎么办?

in gradle:app

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:22.2.1'
compile 'com.android.support:design:22.2.1'
compile 'com.android.support:cardview-v7:22.2.1'
compile 'com.android.support:recyclerview-v7:22.2.1'}

并在我的包裹下导入:

import android.support.v7.widget.RecyclerView;

无法解析symble“RecyclerView”

2 个答案:

答案 0 :(得分:0)

在gradle中使用编译'com.android.support:recyclerview-v7:23.0.1'

并更新您的sdk

targetSdkVersion 23

现在它会支持。

答案 1 :(得分:0)

添加到您的应用build.gradle

compile 'com.android.support:recyclerview-v7:23.1.1'

你的targetSDKVersion到23

并将此代码粘贴到您的布局文件

<android.support.v7.widget.RecyclerView
    android:id="@+id/recycler_view"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:scrollbars="vertical" />