ScrollView中的RecyclerViews正在切断最后一项

时间:2018-03-23 19:21:36

标签: android android-layout android-recyclerview scrollview

我有一个带有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)正在被切断。

enter image description here

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

enter image description here

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

任何帮助都会非常感激,因为我对这个问题感到困惑:(

解决方案很简单:我只使用NestedScrollView而不是ScrollView,它运行正常。

2 个答案:

答案 0 :(得分:0)

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

答案 1 :(得分:-1)

在线性布局上设置底部边距将解决您的问题。底部边距应该是回收者视图行的高度尺寸。