가능한 중복 그룹에 대한 ExpandableListView 표시기를 숨기는 방법 : 자녀가없는없이 아이들과 함께
main.xml에이 그룹에 대한
ExpandableListView - hide indicator for groups with no children
숨기기 표시를
<ExpandableListView
android:id="@+id/elv"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:groupIndicator="@drawable/selector">
</ExpandableListView>
selector.xml
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_empty="true" android:drawable="@android:color/transparent"/>
<item android:state_expanded="true" android:drawable="@drawable/expanded" />
<item android:drawable="@drawable/collapse" />
</selector>
내 ICS에 대한 나던 일, 모든 상태가 그룹
어댑터의 getChildrenCount (int groupPosition)은 축소 된 그룹에 대해 호출되지 않으므로 버그 인 것 같습니다. 그래서 그들은 비어있는 것으로 취급됩니다. –