在另一个回收器视图中添加回收器视图时遇到问题。子回收器位于CardView中,而CardView位于父回收器视图中。我尝试了Internet上的所有解决方案,但没有效果。我希望子回收器视图垂直滚动,而父回收器视图也垂直滚动。
父回收器视图:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/backgroundPrimary"
tools:context=".BidsCenter">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/bidCenter"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="5dp"
/>
</FrameLayout>
子回收程序视图:
<?xml version="1.0" encoding="utf-8"?>
<androidx.cardview.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:layout_margin="5dp"
android:animateLayoutChanges="true"
android:clickable="true"
android:elevation="3dp"
android:focusable="true"
android:orientation="vertical"
app:cardCornerRadius="10dp">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="5dp">
<RelativeLayout
android:id="@+id/r0"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">
<ImageView
android:id="@+id/itemPreviewInCenter"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_alignParentEnd="true"
android:layout_centerVertical="true"
android:layout_margin="3dp"
android:scaleType="fitCenter"
android:src="@android:drawable/ic_menu_report_image" />
<TextView
android:id="@+id/itemTitleInCenter"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_margin="3dp"
android:layout_toStartOf="@+id/itemPreviewInCenter" />
<TextView
android:id="@+id/totalBidPrice"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerVertical="true"
android:layout_toEndOf="@+id/numberOfBids"
android:background="@drawable/bid_total"
android:clickable="false" />
<TextView
android:id="@+id/latestBidDate"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_margin="3dp"
android:layout_toEndOf="@id/bidMenu" />
<TextView
android:id="@+id/numberOfBids"
android:layout_width="25dp"
android:layout_height="25dp"
android:layout_centerVertical="true"
android:layout_margin="3dp"
android:layout_toEndOf="@+id/latestBidDate"
android:background="@drawable/new_message_count"
android:gravity="center"
android:textColor="@color/text"
android:visibility="gone" />
<ImageButton
android:id="@+id/bidMenu"
style="?android:attr/actionOverflowButtonStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_centerVertical="true" />
</RelativeLayout>
<LinearLayout
android:id="@+id/showBidders"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/r0"
android:orientation="vertical"
android:visibility="gone">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="end"
android:layout_margin="3dp" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/latestBidsInCenter"
android:layout_width="match_parent"
android:layout_height="120dp" />
</LinearLayout>
</RelativeLayout>
</androidx.cardview.widget.CardView>
以下是一些屏幕截图
父代:
子对象:
3条答案
按热度按时间yiytaume1#
添加
android:nestedScrollingEnabled="false"
到您的孩子RecyclerView,它应该工作。jtw3ybtb2#
已编辑
你必须禁用父recyclerView触摸事件同时滚动子Recyclerview
oxcyiej73#
在java代码中,将循环视图1.setHasFixedSize(false)放在循环视图.setAdapter之后。