我有一个带有LinearLayout的ScrollView,并且内部有几个不同的RecyclerView,因为我从不同的来源加载数据。

<?xml version="1.0" encoding="utf-8"?>
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">

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

    <android.support.v7.widget.RecyclerView
        android:id="@+id/posts_view"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@android:color/white"
        android:clipToPadding="false"
        android:padding="10dp"
        android:layout_marginTop="20dp"
        android:nestedScrollingEnabled="false"/>

    <android.support.v7.widget.RecyclerView
        android:id="@+id/movies_view"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@android:color/white"
        android:clipToPadding="false"
        android:padding="10dp"
        android:layout_marginTop="20dp"
        android:nestedScrollingEnabled="false"/>

    <android.support.v7.widget.RecyclerView
        android:id="@+id/tv_shows_view"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@android:color/white"
        android:clipToPadding="false"
        android:padding="10dp"
        android:layout_marginTop="20dp"
        android:nestedScrollingEnabled="false"/>

    <android.support.v7.widget.RecyclerView
        android:id="@+id/music_view"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@android:color/white"
        android:clipToPadding="false"
        android:padding="10dp"
        android:layout_marginTop="20dp"
        android:nestedScrollingEnabled="false"/>

    <android.support.v7.widget.RecyclerView
        android:id="@+id/books_view"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@android:color/white"
        android:clipToPadding="false"
        android:padding="10dp"
        android:layout_marginTop="20dp"
        android:nestedScrollingEnabled="false"/>

</LinearLayout>




我同时使用LinearLayoutManager和GridLayoutManager来组织recyclerviews显示的内容。

    GridLayoutManager layoutManager = new GridLayoutManager(context, 2);
    recyclerView.setLayoutManager(layoutManager);
    recyclerView.setAdapter(adapter);


由于某种原因,第二个RecycleView的最后一个元素(带有GridLayout)已被切断。

android - ScrollView中的RecyclerViews切断了最后一项-LMLPHP

而其他RecycleViews的元素以正确的方式显示。

android - ScrollView中的RecyclerViews切断了最后一项-LMLPHP

我不知道这是否重要,但是在RecycleViews中我使用CardViews。

任何帮助将不胜感激,因为我要疯了这个问题:(





解决方案很简单:我只是使用NestedScrollView而不是ScrollView,它可以正常工作。

最佳答案

在这种情况下,请使用嵌套滚动视图而不是滚动视图。

08-18 19:03