<?xml version="1.0" encoding="utf-8"?> <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent"> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical"> <RecyclerView android:id="@+id/recycler_view" android:layout_width="match_parent" android:layout_height="wrap_content" /> <android.support.design.widget.FloatingActionButton android:id="@+id/fab_add_button" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="bottom|end" android:layout_margin="16dp" android:src="@drawable/add" android:contentDescription="@string/add_button_description"/> </LinearLayout> </ScrollView> 报错Cannot resolve class RecyclerView
时间: 2024-02-03 18:02:22 浏览: 171
Android控件之ScrollView用法实例分析
这个错误通常是因为没有在项目的 build.gradle 文件中添加 RecyclerView 的依赖。你可以尝试将以下代码添加到你的 build.gradle 文件中:
```
dependencies {
implementation 'com.android.support:recyclerview-v7:28.0.0'
}
```
如果你已经添加了这个依赖但是仍然遇到问题,可以尝试在 Android Studio 中点击 "File" -> "Invalidate Caches / Restart" 重启 Android Studio。如果问题仍然存在,你可以尝试清除项目的 Gradle 缓存,方法是在命令行中运行 `./gradlew clean`。
阅读全文