Cannot call notifyItemInserted() from RecyclerView.OnScrollListener

前端 未结 4 1478
清歌不尽
清歌不尽 2021-01-31 14:52

Recently I upgrade my recyclerview-v7:23 to recyclerview-v7:24.2.0. My applicaton has an endless scroll list. The error message points to the line

4条回答
  •  失恋的感觉
    2021-01-31 15:04

    You could also post using the view.

       recyclerView.post(new Runnable() {
            public void run() {
                articleAdapter.notifyItemInserted(allArticles.size() - 1);
            }
        });
    

提交回复
热议问题