gpt4 book ai didi

android - 带有 CheckBox 的列表项不可点击

转载 作者:IT老高 更新时间:2023-10-28 22:23:39 24 4
gpt4 key购买 nike

我有一个包含 CheckBox 的列表项,我希望能够单击 CheckBox 和列表项本身。不幸的是,两者之间似乎存在某种冲突,因为我只能在注释掉 CheckBox 时单击该项目。好像我记得有一种方法可以解决这个问题,但我现在找不到。谢谢

编辑:这是一个 ListFragment,所以不需要调用 setOnItemClickListener。

好的,这是列表项的 XML。问题出在 CheckBox 上,但我想不妨复制所有内容。

<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/list_item_survey"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
style="@style/SimpleListItem">
<TextView
android:id="@+id/survey_title"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
style="@style/ListItemTitle" />
<TextView
android:id="@+id/survey_date"
android:layout_below="@id/survey_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
style="@style/ListItemSubtitle" />
<TextView
android:id="@+id/survey_completed"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_below="@id/survey_title"
android:textColor="@color/accent_1"
android:text="@string/survey_completed"
style="@style/ListItemSubtitle" />
<CheckBox
android:id="@+id/survey_did_not_attend"
android:layout_below="@id/survey_date"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/survey_did_not_attend"
android:focusable="false"
style="@style/ListItemSubtitle" />
</RelativeLayout>

最佳答案

您需要将此添加到您的自定义适配器 xml 文件 android:descendantFocusability="blocksDescendants"

关于android - 带有 CheckBox 的列表项不可点击,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6936272/

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