Answers for "/RecyclerView: No adapter attached; skipping layout"

0

RecyclerView: No layout manager attached; skipping layout

You need to set layout manager
Kotlin:
val linearLayoutManager:LinearLayoutManager = LinearLayoutManager(this)
linearLayoutManager.orientation = LinearLayoutManager.HORIZONTAL{or VERTICAL}
recycleView.layoutManager = linearLayoutManager
Java:
LinearLayoutManager linearLayoutManager = new LinearLayoutManager(this);
linearLayoutManager.setOrientation(LinearLayoutManager.HORIZONTAL{or VERTICAL});
list.setLayoutManager(linearLayoutManager);
Posted by: Guest on July-18-2020
0

E/RecyclerView: No layout manager attached; skipping layout

<androidx.recyclerview.widget.RecyclerView
        android:id="@+id/reccylerview"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:layout_marginTop="8dp"
        android:scrollbars="vertical"
        app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"/>
Posted by: Guest on May-29-2021

Code answers related to "/RecyclerView: No adapter attached; skipping layout"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language