반응형
아래의 오류는 RecyclerView에 Layout Manager를 설정하지 않아 서 발생합니다.
E/RecyclerView: No layout manager attached; skipping layout
아래와 같이 RecyclerView에 layoutManager를 설정하면 됩니다.
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
<?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>
반응형
'안드로이드' 카테고리의 다른 글
Could not download aapt2-windows.jar (com.android.tools.build:aapt2:3.2.0-4818971): No cached version available for offline mode (0) | 2021.03.16 |
---|---|
안도로이드 SQLite insert or replace 구현 (0) | 2021.02.15 |
Android resource linking failed(error: unexpected element <queries> found in <manifest>) (0) | 2021.01.30 |
귀하의 앱에서 Google AdMob 광고 게재가 중지되었습니다 (4) | 2020.08.17 |
안드로이드 외부 폰트 Layout XML에 적용하기 (0) | 2020.08.07 |
댓글