SectionedRecyclerViewAdapter 动画

SectionedRecyclerViewAdapter animations

我一直在使用 https://github.com/luizgrp/SectionedRecyclerViewAdapter 的 SectionedRecyclerViewAdapter。它工作得很好。我想开始添加一些动画。我下载并安装了 test/example 应用程序,并检查了动画示例的代码。我无法理解该示例代码的哪一部分使动画像它们一样工作。 谁能解释一下?

动画在调用 RecyclerView.Adapter 的任何 notify 方法时触发。在下面的示例中,RecyclerView 将在特定位置动画插入项目:

adapter.notifyItemInserted(position);

图书馆提供额外的 notify methods to help trigger the animation for specific items of the sections, like this one.