在 android 中显示 "Recursive Comments" 的最佳方式?

Best way to display "Recursive Comments" in android?

我正在创建一个 Reddit 应用程序用于练习,它使用通过获取 Reddit JSON 文件创建的 GSON 对象。对于评论,每个评论项都有由更多评论项组成的回复。我正在尝试找出显示这些内容的最佳方式,使什么是重播对什么具有逻辑意义。我想也许有一个带有自定义适配器的列表,并且对于这些项目中的每一个,他们都有一个列表视图,其中包含下一级评论等等。为了防止事情被压扁,我想也许我只深入这么多项目并且只显示超过赞成票阈值的评论。有没有人做过类似的事情,如果有的话,什么是好的方法。

谢谢

您可以使用此库 AndroidTreeView, but I'm not sure if this is good solution from UX point of view. Personally I prefer to use single ListView and load new fragment with underlying list of data. BreadCrumbs 可能是该做法的一个很好的补充,以指示评论级别。