Is there a way to show a preview of a RecyclerView's contents as Grid in the Android Studio editor?

前端 未结 5 1712
有刺的猬
有刺的猬 2021-02-01 01:45

When I add the RecyclerView to the layout, it shows up as a list view in vertical order. I am using tools:listitem for this. Is there a way, such that it displays a

5条回答
  •  温柔的废话
    2021-02-01 02:05

    Use

    app:layoutManager="GridLayoutManager"
    app:spanCount="3"
    tools:listitem="@layout/table_grid_item"
    

提交回复
热议问题