为什么我的Listview显示大空间,即使文本很少?

时间:2017-06-21 11:35:35

标签: android listview

在某些ListView的持有人中,即使它有一个小文本,我也有空格。
TextView设置为wrap_content。我的listview布局xml项目有几个按钮。我只是设置了这些按钮VISIBILITY.GONE。

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

    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textAppearance="?android:attr/textAppearanceMedium"
        android:id="@+id/textView"
        android:gravity="center" />

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="photo"
        android:id="@+id/photo"
        android:layout_gravity="center_horizontal" />

    <LinearLayout
        android:orientation="horizontal"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"
        android:baselineAligned="false"
        android:clickable="false"
        android:focusable="false">

        <Button
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="New Button"
            android:id="@+id/left" />

        <Button
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="New Button"
            android:id="@+id/right" />
    </LinearLayout>

    <LinearLayout
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"
        android:baselineAligned="false"
        android:clickable="false"
        android:focusable="false" >

        <EditText
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/editText"
            android:layout_gravity="center_horizontal"
            android:layout_weight="4"
            android:gravity="center_horizontal"
            android:hint="@string/answer"
            android:maxLength="4" />

        <Button
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="@string/ok"
            android:id="@+id/ok" />
    </LinearLayout>

</LinearLayout>

enter image description here

2 个答案:

答案 0 :(得分:4)

将根设为wrap_content而不是match_parent作为高度。

如果孩子说他们想要match_parent,那么在垂直滚动列表视图(阅读,儿童可用无限高度)中会发生什么?

无法看到您的图片,但在RecyclerView中,每件商品的高度都是RecyclerView的高度。

答案 1 :(得分:-1)

而不是使用&#34; match_parent&#34;在最顶层使用&#34; wrap_content&#34;高度