expandablelistview - Expandable list-view android, set custom drawables -


ok, have simple question here. how can change group arrow on expandable listview drawables? y know, i'm gonna use + , - expandable group list...

thanks

please check this link more helpful 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> 

Comments

Popular posts from this blog

c# - SharpSVN - How to get the previous revision? -

c++ - Is it possible to compile a VST on linux? -

url - Querystring manipulation of email Address in PHP -