84669 人が学習中
152542 人が学習中
20005 人が学習中
5487 人が学習中
7821 人が学習中
359900 人が学習中
3350 人が学習中
180660 人が学習中
48569 人が学習中
18603 人が学習中
40936 人が学習中
1549 人が学習中
1183 人が学習中
32909 人が学習中
我把RecyclerView搞了个上拉加载更多加载完以后服务器会给我一个list<String>这个list里有20个string然后我在adapter里把这个和原来合并了,那么问题来了notifyItemInserted应该传什么值?传20吗?
学习是最好的投资!
notifyiteminserted(mcontentlist.size,list.size)//传20
新しい n 個のデータがリストの先頭に挿入されますnotifyItemRangeInserted(0, n);
notifyItemInserted(int position)このメソッドは、単一のデータを挿入および更新する場合、つまりリスト内の特定の位置にデータを挿入する場合に使用され、何をしたいかによって異なります。必要なのは、バッチで追加する notifyItemRangeInserted(int positionStart, int itemCount) メソッドだと思います。たとえば、既に 20 個のデータがある場合、さらに 20 個の新しいデータをロードするのは notifyItemRangeInserted(20, 20);
notifyItemInserted(int position)
notifyItemRangeInserted(int positionStart, int itemCount)
notifyItemRangeInserted(20, 20);
前のデータが mLastData であると仮定します; 全長位置 = mLastData.size(); 新しく返されたデータは mNewData であり、すべてのデータは mLastData.addAll(mNewData);領域を使用しますRecyclerview の更新、notifyItemRangeChanged(position+1, mLastData.size());
notifyiteminserted(mcontentlist.size,list.size)//传20
新しい n 個のデータがリストの先頭に挿入されます
notifyItemRangeInserted(0, n);
です。notifyItemInserted(int position)
このメソッドは、単一のデータを挿入および更新する場合、つまりリスト内の特定の位置にデータを挿入する場合に使用され、何をしたいかによって異なります。必要なのは、バッチで追加するnotifyItemRangeInserted(int positionStart, int itemCount)
メソッドだと思います。たとえば、既に 20 個のデータがある場合、さらに 20 個の新しいデータをロードするのはnotifyItemRangeInserted(20, 20);
前のデータが mLastData であると仮定します; 全長位置 = mLastData.size();
新しく返されたデータは mNewData であり、すべてのデータは mLastData.addAll(mNewData);
領域を使用しますRecyclerview の更新、notifyItemRangeChanged(position+1, mLastData.size());