gpt4 book ai didi

ExpandableListView 中的 Android 分隔线

转载 作者:行者123 更新时间:2023-11-29 22:02:29 24 4
gpt4 key购买 nike

我正在设置 childView 的分隔线。但是当我展开并看到 childRows 分隔线在子行和父行中的颜色变化时。为什么会这样?

我的 expandableListView 的 xml:

<?xml version="1.0" encoding="utf-8"?>
<ExpandableListView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:childDivider="@color/dark_orange"
android:indicatorLeft="?android:attr/expandableListPreferredItemIndicatorLeft"
android:indicatorRight="?android:attr/expandableListPreferredItemIndicatorRight"
android:groupIndicator="@drawable/group_indicator">
</ExpandableListView>

最佳答案

将您的 ExpandableListView 更改为

<?xml version="1.0" encoding="utf-8"?>

<ExpandableListView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentLeft="true"
android:dividerHeight="2dp"<!--===========> problem is here-->
android:divider="@drawable/yellow"
android:childDivider="@color/dark_orange"
android:indicatorLeft="?android:attr/expandableListPreferredItemIndicatorLeft"
android:indicatorRight="?android:attr/expandableListPreferredItemIndicatorRight"
android:groupIndicator="@drawable/group_indicator"
/>

我认为问题在于设置子分隔线的高度。所以请更正。

关于ExpandableListView 中的 Android 分隔线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11613064/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com