gpt4 book ai didi

android - 带有可滚动 CardView 的 RecyclerView

转载 作者:行者123 更新时间:2023-11-29 00:12:47 25 4
gpt4 key购买 nike

我想做什么


我有一个 RecyclerView,里面有不同的 CardView。为此,我编写了一个带有 RecyclerView.ViewHolderRecycleView.Adapter。效果很好。

现在我想要拥有承载 ScrollView 的卡片。我的 Layout 如下所示:

<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="5dp">

<TextView
android:id="@+id/tv_assignment_comments_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerInParent="false"
android:gravity="left"
android:text="Kommentare"
android:textSize="@dimen/abc_text_size_large_material" />


<ScrollView
android:layout_width="match_parent"
android:layout_height="250dp"
android:layout_below="@id/tv_assignment_comments_title"
android:fillViewport="true">

<LinearLayout
android:id="@+id/ll_comments_card_holder"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" />
</ScrollView>
</RelativeLayout>

到目前为止一切顺利。 Card 得到显示但我无法滚动 ScrollView 内的内容,只能滚动 RecyclerView 本身。

如何让我的 ScrollView 在 RecyclerView 中滚动?谁能告诉我魔法吗?

最佳答案

我可以通过在我的 RecyclerView.ViewHolder 中添加以下内容来解决问题:

mCommentsHolder.mCommentsScrollContainer.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
v.getParent().requestDisallowInterceptTouchEvent(true);
return false;
}
});

现在它运行起来非常流畅。我从here得到的.

关于android - 带有可滚动 CardView 的 RecyclerView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28988064/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com