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

后端 未结 4 1507
别那么骄傲
别那么骄傲 2020-11-30 16:53

When I add the RecyclerView to the layout, it shows up as a blank screen. Is there a way, such as through the tools namespace, to show a preview of the content

4条回答
  •  臣服心动
    2020-11-30 17:24

    First, add the following line in your item XML to made a preview of your list while you edit your item:

    tools:showIn="@layout/activity_my_recyclerview_item"
    

    And them, add the following line in your RecyclerView XML to preview how your item will look in your list:

    tools:listitem="@layout/adapter_item"
    

提交回复
热议问题