RecycleView height wrap_content在每个Item上给出空格

时间:2016-05-20 16:45:31

标签: android android-recyclerview linearlayoutmanager

enter image description here

这是RecycleView代码:

<android.support.v7.widget.RecyclerView
    android:id="@+id/rvMedicine"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    tools:listitem="@layout/recycleview_add_medicine"
    android:scrollbars="vertical"/>

这是RecycleView项目代码:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingTop="@dimen/activity_vertical_margin">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="50dp"
            android:weightSum="2"
            android:layout_gravity="bottom"
            android:orientation="horizontal">

            <RelativeLayout
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:background="#03A9F4"
                android:layout_weight="1.3">
                <TextView
                    android:id="@+id/tvMedicineName"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_marginTop="5dp"
                    android:layout_marginLeft="10dp"
                    android:textSize="16dp"
                    android:textColor="#ffffff"
                    android:layout_centerInParent="true"
                    android:textAlignment="center"
                    android:text="Maxican Pasta"/>
            </RelativeLayout>

            <RelativeLayout
                android:layout_width="0dp"
                android:layout_weight=".7"
                android:background="@color/colorPrimary"
                android:layout_height="match_parent">
                <TextView
                    android:id="@+id/tvMedicineQuantity"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:textColor="#ffffff"
                    android:gravity="center"
                    android:text="100 pics"
                    android:textSize="18dp"
                    android:layout_centerInParent="true"/>
            </RelativeLayout>

        </LinearLayout>
</LinearLayout>

此代码中存在哪些问题?

1 个答案:

答案 0 :(得分:1)

张这个

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"   <-- change is here -->
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingTop="@dimen/activity_vertical_margin">

此xml文件位于RecylerView的每一行,因此当您使用match_parent时,我们将每行高度设置为<android.support.v7.widget.RecyclerView的相同高度。当您使用wrap_content时,每行高度都会根据需要进行调整,高度可能会有所不同但在match_parent每行的高度固定为<android.support.v7.widget.RecyclerView的高度

希望你理解。