RecycleView的使用总结(需要在gradle中添加依赖)

来源:互联网 发布:excel多个数据求和 编辑:程序博客网 时间:2024/05/16 15:06


想要使用:

<android.support.v7.widget.RecyclerView    android:id="@+id/holidays_recy"    android:layout_width="match_parent"    android:layout_height="match_parent"></android.support.v7.widget.RecyclerView>

必须要添加这个依赖库:

compile 'com.android.support:recyclerview-v7:25.3.1'

阅读全文
0 0