我在CardView
中有多个RecyclerView
,我无法删除它们之间的额外空格。
我的CardView
:
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:id="@+id/card_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="0dp"
android:layout_marginLeft="0dp"
android:layout_marginRight="0dp"
android:layout_marginTop="0dp"
card_view:cardBackgroundColor="@color/white"
card_view:cardCornerRadius="0dp"
card_view:cardElevation="0dp"
card_view:cardUseCompatPadding="true">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="0dp"
android:background="@drawable/rounded_corner"
android:paddingBottom="8dp">
<TextView
android:id="@+id/textViewName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="16dp"
android:layout_marginTop="16dp"
android:layout_toRightOf="@+id/imageView"
android:text="HEAD"
android:textColor="@color/black"
android:textSize="14sp" />
<TextView
android:id="@+id/textViewId"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/textViewName"
android:layout_below="@+id/textViewName"
android:layout_marginRight="8dp"
android:layout_marginTop="4dp"
android:text="SUBHEAD"
android:textColor="@color/black"
android:textSize="14sp" />
<ImageView
android:id="@+id/imageView"
android:layout_width="60dp"
android:layout_height="60dp"
android:layout_alignParentEnd="false"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="false"
android:layout_alignParentStart="true"
android:layout_marginBottom="16dp"
android:layout_marginLeft="16dp"
android:layout_marginTop="16dp" />
</RelativeLayout>
</android.support.v7.widget.CardView>
我的RecyclerView
:
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerview_user_data"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/toolbar"
android:background="@color/grey_bg" />
Screenshot。红色箭头指向额外的空间。
答案 0 :(得分:3)
如果你想彻底摆脱它,你可以对CardView的contentPadding属性使用负数,例如:
card_view:contentPadding="-8dp"
添加负边距应该有效。