我需要添加一个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>