본문 바로가기

개발 노트/Kotlin

[Kotlin] 에러 - No layout manager attached; skipping layout

리사이클러뷰를 만드는 도중에 아래와 같은 오류가 발생했다

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

오류 메시지

 

 

RecyclerView 레이아웃에 layoutManager 코드를 추가해주면 오류가 해결된다 

<androidx.recyclerview.widget.RecyclerView
    android:id="@+id/rv"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_marginTop="150dp"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    tools:listitem="@layout/community_list_item"
    app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"/>