使用嵌套的RecyclerView的RecyclerView - 使嵌套的RecyclerView可单击作为整个视图

时间:2015-06-10 16:58:03

标签: android onclicklistener android-recyclerview

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

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

我怎样才能做到这一点?

问题:

  • 为嵌套的RecyclerView的主视图设置onClickListener确实有效,但只有当我在RecyclerView本身外部点击时
  • 点击嵌套的RecyclerView不会将点击移到父视图上(我甚至尝试将可点击,可聚焦,focusableIntouch设置为false,但仍然没有委托触摸,而是由嵌套的RecyclerView消耗......

以下是包装适配器的视图:

<?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>

3 个答案:

答案 0 :(得分:2)

我查看了RecyclerView来源,这有助于:

recyclerView.setLayoutFrozen(true)

答案 1 :(得分:1)

这是一个老问题,但我有同样的任务,没有找到好的解决方案。 我只是将透明视图放在recyclerview上,并将click listener设置为此视图。

<android.support.v7.widget.CardView
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    app:cardBackgroundColor="@color/white"
    app:cardCornerRadius="0dp">

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

        <LinearLayout
            android:id="@+id/dataLayout"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical"
            android:paddingBottom="@dimen/history_margin_v"
            android:paddingEnd="@dimen/history_margin_h"
            android:paddingLeft="@dimen/history_margin_h"
            android:paddingRight="@dimen/history_margin_h"
            android:paddingStart="@dimen/history_margin_h"
            android:paddingTop="@dimen/history_margin_v">

            <TextView
                android:id="@+id/day"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginBottom="@dimen/widget_margin_v"
                android:textColor="@color/font_blue"
                android:textSize="@dimen/font_size_large"/>

            <android.support.v7.widget.RecyclerView
                android:id="@+id/images"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"/>
        </LinearLayout>
        <View
            android:id="@+id/clickView"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="?attr/selectableItemBackground"
            android:layout_alignLeft="@+id/dataLayout"
            android:layout_alignRight="@+id/dataLayout"
            android:layout_alignStart="@+id/dataLayout"
            android:layout_alignEnd="@+id/dataLayout"
            android:layout_alignTop="@+id/dataLayout"
            android:layout_alignBottom="@+id/dataLayout"/>
    </RelativeLayout>
</android.support.v7.widget.CardView>

答案 2 :(得分:0)

为了使整个行可单击而不是每个图像都需要实现自定义 onItemClickListener (名称来自listview,抱歉)。 看看这个link 这对我很有帮助。

编辑:

嵌套的回收商会窃取您的点击次数。为了解决这个问题,你需要创建一个cusom touch listener并将其传递给嵌套的回收器。就像你把它放到外面的ercycler但将事件传递给外面的那个。

编辑2:

在整个行中添加一个带有两个状态的选择器,就像按钮一样,然后在内部循环器 setSelected(true)的onclick上添加 setSelected的行和postDelay 50ms )这将给&#34;点击&#34;效果。