RecyclerView与ScrollView wrap_content问题

时间:2016-11-07 13:13:00

标签: android android-recyclerview android-scrollview

首先,我知道旧版libs中的Recycler问题。我目前的lib版本是24.2.1。

我正在尝试制作一个模板,其中包含有关该项目的基本信息,并且在此信息下方是一个评论列表。这个评论列表必须包含它的内容,并且必须滚动它的父级,所以它应该感觉像一个大视图。

我正在尝试使用以下代码执行此操作,但RecyclerView不会包装内容,而是在屏幕底部有一小部分内容。

read

你能帮我么?

更新 终于找到了解决方案。最好使用相对布局。不确定为什么在LinearLayout中出现了这个问题,但是下面的xml结构有效:

<android.support.design.widget.CoordinatorLayout
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="match_parent"
android:fitsSystemWindows="true"
android:orientation="vertical">

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

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

    <ScrollView
        android:id="@+id/scrollView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

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

            <include layout="@layout/news_layout_header_repost"/>

            <LinearLayout
                android:orientation="vertical" android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginStart="@dimen/cardview_inner_margin"
                android:layout_marginEnd="@dimen/cardview_inner_margin"
                xmlns:android="http://schemas.android.com/apk/res/android"
                xmlns:tools="http://schemas.android.com/tools">

                <LinearLayout
                    android:id="@+id/repostTextLayout"
                    android:orientation="horizontal"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content">
                </LinearLayout>

            </LinearLayout>

            <Button
                android:id="@+id/loadComments"
                android:layout_width="match_parent"
                android:layout_height="wrap_content" />

            <android.support.v7.widget.RecyclerView
                android:id="@+id/rv"
                android:layout_width="match_parent"
                android:layout_height="wrap_content">
            </android.support.v7.widget.RecyclerView>

        </LinearLayout>

    </ScrollView>

</LinearLayout>

2 个答案:

答案 0 :(得分:1)

ScrollView永远不应该有wrap_content身高

答案 1 :(得分:-1)

根据包含的子项数量管理recyclerview的高度,它可以解决高度问题