ok, i just have 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

link|improve this question

33% accept rate
feedback

2 Answers

up vote 5 down vote accepted

Please check below link more helpful to you

http://android-adda.blogspot.com/2011/06/custom-expandable-listview.html


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>
link|improve this answer
thanks! it's really helpful! – user724861 Jul 1 '11 at 6:11
feedback

Have you checked The developer's page, I think it will be helpful.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.