RecyclerView показывает только 1 элемент, когда я использую LinearLayout вместо CardView в качестве родительского XML-макета

#android #xml #kotlin #android-recyclerview #Android #xml #kotlin #android-recyclerview Вопрос: Вот мой XML-фрагмент: fragment_leaderboards.xml <?xml version="1.0" encoding="utf-8"?> <android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" xmlns:app="http://schemas.android.com/apk/res-auto" android:background="@color/colorPrimary"> <android.support.v7.widget.RecyclerView android:layout_width="match_parent" android:layout_height="match_parent" android:id="@ id/leaderboards_list" android:scrollbars="vertical"> </android.support.v7.widget.RecyclerView>…

Продолжить чтениеRecyclerView показывает только 1 элемент, когда я использую LinearLayout вместо CardView в качестве родительского XML-макета