最新回答 / 戎马小西
直接在项目build.gradle文件引入
dependencies { implementation 'com.android.support:recyclerview-v7:28.0.0-alpha1' }保证RecyclerView的版本与compileSdkVersion的版本一致
2018-07-30
添加item时mheights数组也增加
...................
mheights.add(pos,(int)(100+Math.random()*300));
......................................
删除item时mheights数组也同步减小
....................
mheights.remove(pos);
...................
...................
mheights.add(pos,(int)(100+Math.random()*300));
......................................
删除item时mheights数组也同步减小
....................
mheights.remove(pos);
...................
2018-05-30
瀑布流onBindViewHolder的函数里面加一个数组边界检测就可以
if (position>mdata.size()-1)
return;
if (position>mdata.size()-1)
return;
2018-05-30
最新回答 / 慕盖茨8305598
添加依赖就好,在build.gradle里面
compile 'com.android.support:recyclerview-v7:27.1.1'
2018-05-12
hyman你好,我非常喜欢你的课程,怎么才能看到你所有的课程呀?因为你这套关于recyclerview的课程在你的主页上就找不到呢?求告知,谢谢了!会一直支持你的![害羞]
2018-04-08
现在谷歌官方提供了android.support.v7.widget.DividerItemDecoration
导入这个类就可以了。不用使用大神提供的。
导入这个类就可以了。不用使用大神提供的。
2017-12-19
引入jar包 搜索recyclerview 出错 source not found
The JAR of this class file belongs to container 'Android Private Libraries ' which does not allow.....
The JAR of this class file belongs to container 'Android Private Libraries ' which does not allow.....
2017-12-06