我的XML中有以下视图。我将childDivider设置为一种颜色。但我的孩子分隔物不可见。
<ExpandableListView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/contacts_first_level_list_view"
android:childDivider="@color/text_color_grey_directives"
android:dividerHeight="@dimen/d1"/>
如果我必须做除此之外的任何其他事情,请告诉我只能看到Childs之间的分隔符(父母之间没有分隔符)。感谢。
答案 0 :(得分:12)
我刚刚遇到这个问题,终于找到了答案。检查isChildSelectable()是否设置为true。 (我知道这是旧的,但它可能对某人有帮助。)