组分隔器总是变黑

时间:2015-07-01 07:02:10

标签: android layout expandablelistview

<ExpandableListView
        android:id="@+id/expandable_date"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:groupIndicator="@android:color/transparent"
        android:layout_weight="5"        
        android:layout_marginLeft="10dp"             
        android:layout_marginRight="10dp"   
        android:divider="#212121"   
        android:dividerHeight="1dp"  
        android:background="#ffffff" />

我想将组和子的分隔符设为灰色,子分隔符可以,但组分隔符总是变黑。请告诉我如何解决这个问题

IMAGE:enter image description here http://s27.postimg.org/r6h213p9f/Untitled.jpg

1 个答案:

答案 0 :(得分:0)

<ExpandableListView
        android:id="@+id/expandable_date"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:groupIndicator="@android:color/transparent"
        android:layout_weight="5"        
        android:layout_marginLeft="10dp"             
        android:layout_marginRight="10dp"   
        android:divider="#C0C0C0"   
        android:dividerHeight="1dp"  
        android:background="@android:color/white" />