在recyclerview中,cardview顶部和底部的不必要的填充

时间:2017-10-03 10:22:02

标签: android android-recyclerview android-cardview

我在recyclerview中有一个cardview,我面临的问题是在填充recyclerview时,必要的填充会出现在cardview内部imageview的顶部和底部.revallerview行的代码在screenshot下面给出。请帮我 我已经在堆栈上尝试了很多代码但没有使用

<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
xmlns:card_view="http://schemas.android.com/tools"
android:layout_margin="5dp"
card_view:cardCornerRadius="5dp">

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

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

        <ImageView
            android:id="@+id/productsearch_img"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:src="@drawable/productsearch"/>

    </LinearLayout>
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="horizontal">
        <TextView
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:text="Proin Volutpat Purus."
            android:textSize="11sp"
            android:scaleY="1.2"
            android:layout_weight="2"
            android:layout_gravity="center"
            android:textColor="@android:color/black"
            android:textStyle="bold"/>

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:gravity="right"
            android:text="$"
            android:layout_gravity="center"
            android:textSize="20sp"
            android:textStyle="bold"
            android:layout_marginBottom="5dp"
            android:layout_marginLeft="20dp"
            android:textColor="@color/textcolorpink"/>

        <TextView
            android:id="@+id/prodprice"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:layout_marginBottom="5dp"
            android:layout_marginRight="10dp"
            android:text="25"
            android:textColor="@color/textcolorpink"
            android:textSize="20sp"
            android:textStyle="bold" />

    </LinearLayout>


</LinearLayout>

1 个答案:

答案 0 :(得分:0)

尝试添加

  

机器人:adjustViewBounds =&#34;真&#34;

到ImageView

<ImageView
        android:id="@+id/productsearch_img"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:adjustViewBounds="true"
        android:src="@drawable/productsearch"/>

P.S。为什么将LinearLayout用于ImageView,您可以将其删除。这是一个不必要的嵌套