2011-07-01 18 views

答えて

22

あなた


OR


から this linkがより便利確認してください
<ExpandableListView 
    android:id="@+id/android:list" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:groupIndicator="@drawable/group_indicator" > 

group_indic ator.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> 
+0

ありがとうございました!それは本当に便利です! – user724861

+1

"android:groupindicator"は "android:groupIndicator"にする必要があります。 – rythos42

関連する問題