ok, i just ha开发者_StackOverflow社区ve a simple question here. how can i change the group arrow on expandable listview with another drawables? y know, i'm gonna use + and - for my expandable group list...
Thanks
Please check this link more helpful to you
OR
<ExpandableListView
android:id="@+id/android:list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:groupIndicator="@drawable/group_indicator" >
group_indicator.xml
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_empty="true" android:drawable="@drawable/arrowright"></item>
<item android:state_expanded="true" android:drawable="@drawable/arrowdown"></item>
<item android:drawable="@drawable/arrowright"></item>
</selector>
精彩评论