<android.support.v7.widget.CardView xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:id="@+id/home_subscribe_card"
android:layout_width="match_parent"
android:layout_height="72dp"
android:onClick="@{vm.onGoalPress}"
card_view:cardCornerRadius="4dp">
<android.support.v7.widget.RecyclerView
android:id="@+id/feeds_list"
android:layout_width="200dp"
android:layout_height="30dp"
android:layout_marginTop="6dp" />
</CardView>
Click上的卡片視圖正在工作。但回收站視圖的區域不可點擊。它如何被點擊以捕獲卡片視圖事件。在卡片視圖內製作可回收點擊的視圖
您的問題並不十分清楚..您希望將cradview作爲回收站視圖的一部分添加,但您將其作爲回收站視圖聲明在相同的視圖組中。您應該將卡視圖作爲回收視圖適配器的一部分。 – Akshay