可滚动的CardView无法响应点击

时间:2016-05-16 08:19:01

标签: android xamarin.android android-recyclerview

我有一个包含带有ScrollView的CardView的RecyclerView。但是CardView没有响应点击。当我删除ScrollView时它完美地工作。有没有办法让它用ScrollView响应点击?

我的CardView看起来像这样;

<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:id="@+id/card_view"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        card_view:cardCornerRadius="4dp"
        card_view:cardUseCompatPadding="true">

    <ScrollView 
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:fillViewport="true">
  <LinearLayout
      android:orientation="vertical"
      android:layout_width="match_parent"
      android:layout_height="wrap_content">


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

1 个答案:

答案 0 :(得分:0)

你不能在另一个scrollview中放置一个scrollview,在这种情况下你的recyclerview默认是可滚动的,所以当你在Recycler视图中放入另一个scrollview时,会出现滚动冲突,明智的是它不支持这种行为

注意 只有当您知道回收器的高度或者需要计算高度时,才能在scrollView内部使用recyclerview。