gpt4 book ai didi

android - RecyclerView with nested RecyclerView - 使嵌套的 RecyclerView 作为一个整体 View 可点击

转载 作者:可可西里 更新时间:2023-10-31 22:03:43 28 4
gpt4 key购买 nike

我使用显示条目列表的 RecyclerView。每个条目都托管另一个 RecyclerView,它是一个图像列表。

我现在想让这个嵌套的 RecyclerView 可点击,而不是它的项目,而是整个 View 。

我怎样才能做到这一点?

问题:

  • 为嵌套 RecyclerView 的主视图设置 onClickListener 确实有效,但前提是我在 RecyclerView 本身之外单击
  • 点击嵌套的 RecyclerView 不会将点击传递给父 View (我什至尝试将可点击、可聚焦、focusableIntouch 设置为 false,但是,触摸没有被委托(delegate),而是被嵌套的 RecyclerView 消耗... <

这是包装适配器的 View :

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
card_view:cardCornerRadius="0dp"
android:layout_margin="5dp"
android:foreground="?android:attr/selectableItemBackground" >

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">

<RelativeLayout
android:id="@+id/rlTop"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:text="Datum"
android:textStyle="bold"
android:id="@+id/tvDate" />

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:text="Info"
android:id="@+id/tvInfo" />
</RelativeLayout>

<android.support.v7.widget.RecyclerView
android:id="@+id/rvData"
android:clickable="false"
android:focusableInTouchMode="false"
android:focusable="false"
android:layout_below="@+id/rlTop"
android:layout_width="match_parent"
android:layout_height="68dp"
android:scrollbars="horizontal" />

</RelativeLayout>

</android.support.v7.widget.CardView>

最佳答案

我查看了 RecyclerView 源代码,这有帮助:

recyclerView.setLayoutFrozen(true)

关于android - RecyclerView with nested RecyclerView - 使嵌套的 RecyclerView 作为一个整体 View 可点击,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30762722/

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