先看一下最终要实现的效果:
我们先看google对它的描述
A view that shows items in a vertically scrolling two-level list. This differs from the by allowing two levels: groups which can individually be expanded to show its children. The items come from the associated with this view.
划重点:1.只能展示两级列表条目
2.由组与子元素组成,我们要分别对组元素以及子元素进行配置及操作
所以,只要是二级列表,无论布局是什么样,都可以考虑使用!并且,如果在使用listview需要两种不同的布局的时候也完全可以使用。还有,如果之前用过的人肯定知道,expandlistview是继承listview的。so、在使用上跟listview基本一样!废话不多说,直接上代码。
我们先看google对它的描述
A vie