为什么RecyclerView占用整个布局空间,即使它的layout_height属性设置为wrap_content?

时间:2016-09-09 10:10:59

标签: android android-recyclerview

我需要添加一个RecyclerView,这样当有一个子元素时,它应该是可见的,否则它应该是不可见的。所以我将android:layout_height属性设置为wrap_content,认为它可以完成上述工作。

但是,当我这样做时,Android中的RecyclerView上方的内容可见,其余的布局空间占据RecyclerView

现在我们可以做任何事情让RecyclerView的身高变得动态吗?

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
          android:layout_width="match_parent"
          android:layout_height="match_parent"
          android:orientation="vertical"
          android:padding="32dp"
android:weightSum="1">

<TextView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginBottom="8dp"
    android:includeFontPadding="false"
    android:text="@string/feedback_header"
    android:textAppearance="?android:attr/textAppearanceMedium"/>

<EditText
    android:id="@+id/feedback"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginBottom="16dp"
    android:background="@color/white"
    android:gravity="start|top"
    android:hint="@string/feedback_description"
    android:maxLines="5"
    android:minLines="5"
    android:padding="8dp"
    android:textAppearance="?android:attr/textAppearanceSmall"
    android:textColor="@color/darkGray"/>

<TextView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginBottom="8dp"
    android:text="@string/feedback_no_files"
    android:textAppearance="?android:attr/textAppearanceSmall"/>

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

<TextView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginBottom="8dp"
    android:text="@string/feedback_disclosure"
    android:textAppearance="?android:attr/textAppearanceSmall"/>

<ScrollView
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <TextView
        android:id="@+id/report"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@color/darkGray"
        android:padding="8dp"
        android:textAppearance="?android:attr/textAppearanceSmall"
        android:textColor="@color/white"/>

</ScrollView>

</LinearLayout>

enter image description here

0 个答案:

没有答案