gpt4 book ai didi

Android ExpandableListView 禁用分组点击效果

转载 作者:行者123 更新时间:2023-11-30 00:43:48 24 4
gpt4 key购买 nike

当我点击项目时,默认的可选样式是橙色背景。

希望对组标题点击产生这种影响。

android:listSelector="@android:color/transparent" 这不是一个好主意,因为它也会影响子项。

有什么办法可以不改变默认的 ExpandableListView 样式吗?

最佳答案

不要为选择器设置颜色,而是设置背景形状,例如 custom_shape.xml:

<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="@android:color/transparent" />

...在您的 xml 中它将是:

<ExpandableListView
android:layout_width="match_parent"
android:listSelector="@drawable/custom_shape"
android:layout_height="wrap_content"/>

关于Android ExpandableListView 禁用分组点击效果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42123282/

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