[Android] E/RecyclerView: No layout manager attached; skipping layout

강승구·2023년 3월 8일
0

RecyclerView에 Layout Manager를 설정하지 않아서 발생하는 오류이다.

xml에서 layoutManager를 설정해주면 해결 가능하다.

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <androidx.recyclerview.widget.RecyclerView
        android:id="@+id/rv_list"
        app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>

</LinearLayout>
profile
강승구

0개의 댓글