<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" />
我想将组和子的分隔符设为灰色,子分隔符可以,但组分隔符总是变黑。请告诉我如何解决这个问题
答案 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" />