Cannot resolve class android.support.v7.widget.RecyclerView

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

insert image description here
change into:

改为:androidx.recyclerview.widget.RecyclerView
	<androidx.recyclerview.widget.RecyclerView
        android:id="@+id/id_recyclerview"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
    </androidx.recyclerview.widget.RecyclerView>

insert image description here

Guess you like

Origin blog.csdn.net/qq_43216714/article/details/123733123