RecyclerView中Cardviews之间的填充过多?

时间:2016-05-17 04:57:27

标签: android android-layout android-studio android-recyclerview android-cardview

我很难减少RecyclerView中卡片之间的填充

Padding Issue Screenshots

上面的截图是在开发者模式"显示布局界限"选项,因此问题似乎与填充。

当删除CardView时,它会恢复正常填充,虽然我不会进行此更改,因为我想要CardView

我手动添加了负片和零填充,但没有效果。

我还添加了card_view:cardUseCompatPadding="true",但也没有。

我的代码:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_marginTop="20dp">

    <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="fill_parent"
        android:layout_height="225dp"
        android:layout_margin="10dp"
        android:clickable="true"
        android:elevation="2dp"
        android:foreground="?android:attr/selectableItemBackground"
        card_view:cardCornerRadius="2dp"
        card_view:cardPreventCornerOverlap="false"
        card_view:cardUseCompatPadding="true"
       >

       <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_marginLeft="-25dp"
            android:orientation="horizontal"

            >

            <ImageView
                android:id="@+id/imageView"
                android:layout_width="200dp"
                android:layout_height="match_parent"
                android:layout_alignLeft="@+id/card_view"
                android:layout_gravity="left|center_vertical"
                android:scaleType="fitCenter" />

            <TextView
                android:id="@+id/Ayoub"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:gravity="fill_vertical|fill_horizontal"
                android:text="Large Text"
                android:textAppearance="?android:attr/textAppearanceLarge"

                />

        </LinearLayout>
    </android.support.v7.widget.CardView>
</RelativeLayout>

2 个答案:

答案 0 :(得分:0)

更改此内容:

android:layout_height="225dp"

to:

android:layout_height="wrap_content"

答案 1 :(得分:0)

你的第一个administrative_area_level_1应该wrap_content not match_parent