如何在 Android Studio 中的 recyclerview 预览中指定列表项计数?
How to specify list item count in preview of recyclerview in Android Studio?
recyclerview 布局定义为
<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"
/>
在预览中,我可以看到来自指定布局的列表项,
但是item的个数是10个,有什么办法可以改变吗?
这不是最好的方法,但您可以在此处限制 layout_height
,以便它仅显示适合 height/width 边界的足够项目。所以玩 tools:layout_height="150dp"
试试这个(3 个项目)
tools:itemCount="3"
recyclerview 布局定义为
<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"
/>
在预览中,我可以看到来自指定布局的列表项, 但是item的个数是10个,有什么办法可以改变吗?
这不是最好的方法,但您可以在此处限制 layout_height
,以便它仅显示适合 height/width 边界的足够项目。所以玩 tools:layout_height="150dp"
试试这个(3 个项目)
tools:itemCount="3"