如何删除ExpandableListView的按钮?

时间:2012-04-10 15:53:00

标签: android button expandablelistview expand

我在项目中使用了自定义ExpandableListAdapter。如何删除此按钮? enter image description here

2 个答案:

答案 0 :(得分:22)

在XML

android:groupIndicator="@null"

或代码

expListView.setGroupIndicator(null)

答案 1 :(得分:2)

您是否尝试使用此功能:         android:groupIndicator =“@ android:color / transparent”?

我不知道您为什么要删除此按钮,但在某些情况下,我的建议可能会有用。