在我从服务器获取的数据中,没有任何一项重复。我在此循环中调试了代码,这添加了模型类,然后在适配器中进行了设置。同样,没有任何一项重复。
但是,在我的列表中,在对行按钮执行click事件之后,重复了一些项目。当我使用下面定义的方法时,文本永远不会出现在行中,但是空行的数量正在增加。
/*When I use these 2 methods then it never displays text in the list but increases list*/
@Override
public long getItemId(int position) {
return position;
}
@Override
public int getItemViewType(int position) {
return position;
}
/*When I use these 2 methods then it never displays text in the list but increases list*/
答案 0 :(得分:0)
在将来自服务器的数据添加到列表并将适配器设置到recyclerview之前,确保清空列表