How to specify list item count in preview of recyclerview in Android Studio?

13.2k Views Asked by At

The recyclerview layout is defined as

     <android.support.v7.widget.RecyclerView
            android:layout_marginTop="15dp"
            android:id="@+id/call_detail_list"
            android:scrollbars="vertical"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            tools:listitem="@layout/call_item"
            />

In the preview, I can see the list items from the specified layout, but the number of item is 10. Is there any way that can be changed?

2

There are 2 best solutions below

2
On BEST ANSWER

Try this (3 number of items)

tools:itemCount="3"

1
On

Not the best way to do it but you can limit the layout_height here so that it only shows enough items that fits within the height/width boundary. So play around with tools:layout_height="150dp"