美文网首页
预览recyclerview效果

预览recyclerview效果

作者: GoodWen | 来源:发表于2019-08-23 09:49 被阅读0次

最顶端加上这句命名空间

  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"
        />

相关文章

网友评论

      本文标题:预览recyclerview效果

      本文链接:https://www.haomeiwen.com/subject/ptczsctx.html