使用前提:
案例来自第一行代码第三版
在工程build.gradle工程模块中加入如下依赖:
dependencies {
...
implementation("androidx.recyclerview:recyclerview:1.3.2")
...
}
一、设置recyclerView控件
在activity_main中使用recyclerView
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>