Android:如何创建包含可扩展行的列表

时间:2016-10-21 17:50:34

标签: android listview expand

我是Android新手,想要创建一个包含其中的另一个列表的ListView。在触摸外部列表视图项时,它应该展开或折叠其子列表。 (类似于Bootstrap崩溃的东西) 是否可以在Android中执行此操作?

2 个答案:

答案 0 :(得分:1)

我不确定你的尝试。但是在Android中使用名为ExpandableListView的小部件是可能的。 Here是一个很好的例子,可以帮助您入门。 另请查看官方doc

答案 1 :(得分:0)

您可以使用ExpandableListView View来显示垂直滚动的两级列表中的项目。这与ListView的不同之处在于允许两个级别:可以单独展开以显示其子级的组。这些项目来自与此视图相关联的ExpandableListAdapter

ExpandableListView 的官方文档:

https://developer.android.com/reference/android/widget/ExpandableListView.html

ExpandableListView 中的ScrollView示例:

http://thedeveloperworldisyours.com/android/expandable-listview-inside-scrollview/