android 中 RecyclerView 的 HarmonyOS 替代品是什么?

What is the HarmonyOS alternative for RecyclerView in android?

我想创建可以在屏幕上滚动的动态列表。为此,在 Android 中,我们创建了一个扩展 RecyclerView.Adapter<ListItem> 的自定义适配器,其中 ListItem 是一个 class,包含扩展 RecyclerView.ViewHolder.

的列表项的内容

如何在HarmonyOS中制作这样的可滚动列表?

鸿蒙开发文档请参考ListContainer

ListContainer是一个用于多行显示连续数据的组件。它包含一系列相同类型的列表项。

Docs link.