I'm trying to add a ryclerview inside a cardview in order to have a list of items inside a card. The problem is that the list inside the card is now not scrollable.
Here's my code:
<android.support.v7.widget.CardView
android:id="@+id/card"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginEnd="8dp"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"">
<android.support.v7.widget.RecyclerView
android:id="@+id/records"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="8dp" />
</android.support.v7.widget.CardView>
I tried to change the layout_width and height, with no results and to set recyclerView.setHasFixedSize(true);