我有一个 LinearLayout,我用自定义视图(伪代码)动态填充:
<LinearLayout>
自定义视图只是这样的 LinearLayout(伪代码):
<LinearLayout>
<TextView>
<ListView width="match_parent" height="match_parent">
</LinearLayout>
当父显示时,它只显示每个自定义视图的 TextView 和 ListView 的第一行。我可以做些什么来使自定义视图扩展以显示 ListView 中的所有项目?
(值得注意的是,我计划让每个自定义视图都像手风琴一样......可扩展/可折叠)