利用ExpandableListView实现二级菜单的时候,在每个二级菜单前面都有一个箭头
但是这个箭头不太美观,所以去掉箭头图标,方法如下:
<ExpandableListView android:id="@+id/elistview" android:layout_width="fill_parent" android:layout_height="wrap_content" android:groupIndicator="@null" />
核心语句: android:groupIndicator="@null"
这样就去掉了系统自带的图标