本文实例为大家分享了RecyclerView实现横向GridView效果展示的具体代码,供大家参考,具体内容如下
要使用RecyclerView,首先要在build.gradle文件中添加依赖compile 'com.android.support:appcompat-v7:24.1.0'
效果图
布局如下
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.dxx.recycleviewtestdemo.MainActivity">
android:id="@+id/rv"
android:layout_width="match_parent"
android:layout_height="200dp"
android:layout_margin="20dp"/>
使用方法: