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

前端 未结 5 1710
有刺的猬
有刺的猬 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 01:56

    To show list horizontally in preview, just use these two attributes

    tools:orientation="horizontal"
    tools:layoutManager="android.support.v7.widget.LinearLayoutManager"
    

    here's the final code

    
    

提交回复
热议问题