gpt4 book ai didi

android - ScrollView/NestedScrollView 内的 RecyclerView 无法正确滚动

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:33:37 25 4
gpt4 key购买 nike

我有一个布局,其中有一个 CardView 和一个与之关联的 FloatingActionButtonCardView(这是一个 RecyclerView)下方有一个回复列表。有时 CardViews' 的高度大于屏幕,所以我为 CardView 使用了 layout_height="wrap_content" 并包裹了整个 LinearLayoutScrollView 中。

但是,这会在滚动 RecyclerView 的项目时导致问题(因为它是 ScrollView 中的 ScrollView )。正如一些 questions 中所建议的那样和 answers发布后,我同时使用了 NestedScrollViewandroid:nestedScrollingEnabled="true" 标签,但 RecyclerView 中的滚动仍然很糟糕。

这是我的 Layout 文件 -

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.forum.reply.ReplyActivity">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<android.support.v7.widget.Toolbar
android:id="@+id/reply_toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"
android:minHeight="?attr/actionBarSize"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:titleTextColor="@android:color/white"/>

<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:nestedScrollingEnabled="true"
android:fillViewport="true">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="8dp"
android:orientation="vertical">

<android.support.v7.widget.CardView
android:id="@+id/topic_card"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingBottom="@dimen/card_margin"
android:paddingLeft="@dimen/card_margin"
android:paddingRight="@dimen/card_margin"
android:paddingTop="@dimen/card_margin">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:paddingEnd="@dimen/card_margin"
android:paddingStart="@dimen/card_margin">

<android.support.v7.widget.AppCompatTextView
android:id="@+id/topic_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
android:layout_marginTop="8dp"
android:textAppearance="@style/TextAppearance.AppCompat.Title"/>

<android.support.v7.widget.AppCompatTextView
android:id="@+id/topic_content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textAppearance="@style/TextAppearance.AppCompat.Body1"/>
</LinearLayout>
</android.support.v7.widget.CardView>

<ProgressBar
android:id="@+id/reply_progressbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:indeterminate="true"
android:visibility="visible"/>

<android.support.v7.widget.RecyclerView
android:id="@+id/list_of_replies"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:visibility="invisible"/>
</LinearLayout>
</ScrollView>
</LinearLayout>

<android.support.design.widget.FloatingActionButton
android:id="@+id/reply_to_topic"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="16dp"
android:clickable="true"
android:src="@drawable/ic_reply_white_24dp"
app:layout_anchor="@id/topic_card"
app:layout_anchorGravity="bottom|right|end"/>

</android.support.design.widget.CoordinatorLayout>

这是一些图片-

CardView with FloatingActionButton visible

Scrolling from the CardView to RecyclerView is smooth

Scrolling down isn't smooth

Scrolling up also isn't smooth

最佳答案

当您的布局中有多个 ScrollView (例如 RecyclerView + ScrollView)并且当您在您的 recyclerView 中滚动时,recyclerView 会与父 Scrollview 一起滚动。这会导致 RecyclerView 出现抖动。您可以通过以下方式避免这种抖动。

你可以添加
android:nestedScrollingEnabled="false"
XML
recyclerView.setNestedScrollingEnabled(false) 中添加到您的 RecyclerView;
到您在 Java 中的 RecyclerView。

关于android - ScrollView/NestedScrollView 内的 RecyclerView 无法正确滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37909312/

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