我有一个CardView,它包含一个带有多个视图的LinearLayout,我想对整个CardView进行onClick,但是RecyclerView有它自己的,不能将其传递给父视图。布局:
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/my_clickable_card"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:duplicateParentState="true"
android:orientation="vertical">
<TextView
android:id="@+id/txt_view"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<android.support.v7.widget.RecyclerView
android:id="@+id/rv_items"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
我尝试android:clickable="false"
的{{1}},android:focusable="false"
和android:duplicateParentState="true"
都没有成功。
感谢您的帮助。
答案 0 :(得分:0)
您必须将cardview放在项目布局中,因此没有边距,因此看起来一样,并且不会出现滚动问题 尝试将其放在适配器布局中。