最顶端加上这句命名空间
xmlns:tools="http://schemas.android.com/tools"
接下来用这句话添加item布局
tools:listitem="@layout/item_feed"
完整代码
<android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:background="@android:color/white"
android:scrollbars="vertical"
tools:listitem="@layout/item_feed"
/>
网友评论